ComputerHardwareStore_YouAr.../ComputerHardwareStore/ComputerHardwareStoreContracts/BindingModels/PurchaseBindingModel.cs
2024-05-01 12:36:17 +04:00

15 lines
526 B
C#

using ComputerHardwareStoreDataModels.Models;
namespace ComputerHardwareStoreContracts.BindingModels
{
public class PurchaseBindingModel : IPurchaseModel
{
public int Id { get; set; }
public int VendorId { get; set; }
public double Cost { get; set; }
public DateTime DateCreate { get; set; }
public Dictionary<int, (IBuildModel, int)> PurchaseBuilds { get; set; } = new();
public Dictionary<int, (IProductModel, int)> PurchaseProducts { get; set; } = new();
}
}