using Connected.Entities.Caching; namespace Common.Types.Countries; internal interface ICountryCache : IEntityCacheClient { } /// /// Cache for the entity. /// internal sealed class CountryCache : EntityCacheClient, ICountryCache { public CountryCache(IEntityCacheContext context) : base(context, Country.CacheKey) { } }