Coursework_ComputerStore_Li.../ComputerStoreContracts/BindingModels/ConsignmentBindingModel.cs
2023-04-07 20:46:13 +04:00

18 lines
497 B
C#

using ComputerStoreDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreContracts.BindingModels
{
public class ConsignmentBindingModel : IConsignmentModel
{
public int ID { get; set; }
public int OrderID { get; set; }
public double Price { get; set; }
public Dictionary<int, (IProductModel, int)> ConsignmentProducts { get; set; } = new();
}
}