Order model redoing
This commit is contained in:
parent
b007290469
commit
cba5b48efb
@ -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; }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user