CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/IOrderModel.cs
Илья Федотов 7f9720200f fix Db models
2024-05-25 22:32:22 +04:00

20 lines
456 B
C#

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
{
int ClientID { get; }
DateTime DateCreate { get; }
double Sum { get; }
//список товаров в заказе
Dictionary<int, (IProductModel, int)> ProductList { get; }
}
}