Order model redoing

This commit is contained in:
Илья Федотов 2024-05-19 15:08:56 +04:00
parent b007290469
commit cba5b48efb

View File

@ -9,13 +9,15 @@ namespace ElectronicsShopDataModels.Models
{
public interface IOrderModel : IID
{
double Sum { get; }
int UserID { get; }
OrderStatus Status { get; }
int ImplementerID { get; }
int PaymentID { get; }
OrderStatus OrderStatus { get; }
PaymeantOption PaymeantOption { get; }
DateTime DateCreate { get; }
DateTime? DateImplement { get; }
//список товаров в заказе
Dictionary<int, (IProductModel, int)> ProductList { get; }
double Sum { get; }
//список товаров в заказе
Dictionary<int, (IProductModel, int)> ProductList { get; }
}
}