using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AccountingWarehouseProductsDataModels.Models { public interface IWarehouseModel : IId { string WarehouseName { get; } string Address { get; } int Capacity { get; } Dictionary WarehouseProducts { get; } } }