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