2022-01-24 00:08:44 +01:00
|
|
|
namespace zero.Localization;
|
2021-11-23 22:56:22 +01:00
|
|
|
|
2021-11-26 12:31:33 +01:00
|
|
|
public class CountryStore : EntityStore<Country>, ICountryStore
|
2021-11-23 22:56:22 +01:00
|
|
|
{
|
2021-11-26 12:31:33 +01:00
|
|
|
public CountryStore(IStoreContext context) : base(context) { }
|
2021-11-23 22:56:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-11-26 12:31:33 +01:00
|
|
|
public interface ICountryStore : IEntityStore<Country> { }
|