You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
401 B
15 lines
401 B
using Connected.Entities.Caching;
|
|
|
|
namespace Common.Types.Countries;
|
|
|
|
internal interface ICountryCache : IEntityCacheClient<Country, int> { }
|
|
/// <summary>
|
|
/// Cache for the <see cref="ICountry"/> entity.
|
|
/// </summary>
|
|
internal sealed class CountryCache : EntityCacheClient<Country, int>, ICountryCache
|
|
{
|
|
public CountryCache(IEntityCacheContext context) : base(context, Country.CacheKey)
|
|
{
|
|
}
|
|
}
|