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.
Connected.Common.Types/Common.Types/Countries/CountryCache.cs

15 lines
401 B

2 years ago
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)
{
}
}