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.Logistics/Connected.Logistics.Types/WarehouseLocations/WarehouseLocationCache.cs

15 lines
538 B

using Connected.Entities.Caching;
using Connected.Logistics.Types.Warehouses;
namespace Connected.Logistics.Types.WarehouseLocations;
internal interface IWarehouseLocationCache : IEntityCacheClient<WarehouseLocation, int> { }
/// <summary>
/// Cache for the <see cref="WarehouseLocation"/> entity.
/// </summary>
internal sealed class WarehouseLocationCache : EntityCacheClient<WarehouseLocation, int>, IWarehouseLocationCache
{
public WarehouseLocationCache(IEntityCacheContext context) : base(context, Warehouse.EntityKey)
{
}
}