Coursework_ComputerStore_Li.../ComputerStoreContracts/BindingModels/ConsignmentBindingModel.cs

18 lines
498 B
C#
Raw Normal View History

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; }
2023-05-20 05:52:38 +04:00
public int? OrderID { get; set; }
public double Price { get; set; }
2023-04-07 20:46:13 +04:00
public Dictionary<int, (IProductModel, int)> ConsignmentProducts { get; set; } = new();
}
}