CourseWork_CompShop/ComputerShopProvider/ComputerShopDataModels/Models/ISupplyModel.cs
2023-05-19 18:26:38 +04:00

13 lines
310 B
C#

using ComputerShopDataModels.Enums;
namespace ComputerShopDataModels.Models
{
public interface ISupplyModel : IId
{
SupplyStatus Status { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
Dictionary<int, IOrderModel> SupplyOrders { get; }
}
}