namespace ComputerHardwareStoreDataModels.Models
{
    public interface IPurchaseModel : IId
    {
        int VendorId { get; }
        double Cost { get; }
        DateTime DateCreate { get; }
        DateTime? DateImplement { get; }
        public Dictionary<int, (IBuildModel, int)> PurchaseBuilds { get; }
        public Dictionary<int, (IProductModel, int)> PurchaseProducts { get; }
    }
}