2023-04-06 23:41:09 +04:00
|
|
|
|
using ComputerShopDataModels.Enums;
|
|
|
|
|
|
|
|
|
|
namespace ComputerShopDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface ISupplyModel : IId
|
|
|
|
|
{
|
|
|
|
|
SupplyStatus Status { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
|
|
|
|
DateTime? DateImplement { get; }
|
2023-05-18 23:41:42 +04:00
|
|
|
|
Dictionary<int, (int, IOrderModel)> SupplyOrders { get; }
|
2023-04-06 23:41:09 +04:00
|
|
|
|
}
|
|
|
|
|
}
|