2024-04-18 16:47:15 +04:00
|
|
|
|
using ComputerHardwareStoreDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace ComputerHardwareStoreContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class PurchaseBindingModel : IPurchaseModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2024-04-29 13:31:37 +04:00
|
|
|
|
public int VendorId { get; set; }
|
2024-04-18 16:47:15 +04:00
|
|
|
|
public double Cost { get; set; }
|
|
|
|
|
public DateTime DateCreate { get; set; }
|
|
|
|
|
public Dictionary<int, (IBuildModel, int)> PurchaseBuild { get; set; } = new();
|
|
|
|
|
public Dictionary<int, (IProductModel, int)> PurchaseProduct { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|