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
518 B
15 lines
518 B
using Connected.Entities.Caching;
|
|
using Logistics.Types.Warehouses;
|
|
|
|
namespace 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)
|
|
{
|
|
}
|
|
}
|