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