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.
|
|
|
|
using Connected.Entities.Caching;
|
|
|
|
|
|
|
|
|
|
namespace Logistics.Types.Warehouses;
|
|
|
|
|
|
|
|
|
|
internal interface IWarehouseCache : IEntityCacheClient<Warehouse, int> { }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Cache for the <see cref="Warehouse"/> entity.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal sealed class WarehouseCache : EntityCacheClient<Warehouse, int>, IWarehouseCache
|
|
|
|
|
{
|
|
|
|
|
public WarehouseCache(IEntityCacheContext context) : base(context, Warehouse.EntityKey)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|