CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/IOrderModel.cs

21 lines
567 B
C#
Raw Normal View History

2024-04-27 12:58:16 +04:00
using ElectronicsShopDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopDataModels.Models
{
public interface IOrderModel : IID
{
double Sum { get; }
OrderStatus Status { get; }
PaymeantOption PaymeantOption { get; }
DateTime DateCreate { get; }
2024-04-29 01:28:41 +04:00
DateTime? DateImplement { get; }
2024-04-27 12:58:16 +04:00
//список товаров в заказе
Dictionary<int, (IProductModel, int)> ProductList { get; }
}
}