CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/IOrderModel.cs

20 lines
456 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
{
2024-05-19 17:52:59 +04:00
int ClientID { get; }
2024-04-27 12:58:16 +04:00
DateTime DateCreate { get; }
2024-05-19 15:08:56 +04:00
double Sum { get; }
2024-05-22 23:00:35 +04:00
2024-05-19 15:08:56 +04:00
//список товаров в заказе
Dictionary<int, (IProductModel, int)> ProductList { get; }
2024-04-27 12:58:16 +04:00
}
}