using ComputerHardwareStoreDataModels.Models;
using System.ComponentModel;

namespace ComputerHardwareStoreContracts.ViewModels
{
    public class PurchaseViewModel : IPurchaseModel
    {
        public int Id { get; set; }
        [DisplayName("Стоимость")]
        public double Cost { get; set; }
        [DisplayName("Дата создания")]
        public DateTime DateCreate { get; set; }
        public int VendorId { get; set; }
        [DisplayName("Сумма")]
        public double Sum { get; set; }
        public Dictionary<int, (IBuildModel, int)> PurchaseBuilds { get; set; } = new();

        public Dictionary<int, (IProductModel, int)> PurchaseProducts { get; set; } = new();
    }
}