2024-04-21 13:42:46 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AccountingWarehouseProductsDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IWarehouseModel : IId
|
|
|
|
|
{
|
2024-04-21 15:33:17 +04:00
|
|
|
|
string WarehouseName { get; }
|
2024-04-21 13:42:46 +04:00
|
|
|
|
|
|
|
|
|
string Address { get; }
|
|
|
|
|
|
|
|
|
|
int Capacity { get; }
|
|
|
|
|
|
|
|
|
|
Dictionary<int, (IProductModel, int)> WarehouseProducts { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|