2024-04-17 21:44:51 +04:00
|
|
|
|
namespace ComputerHardwareStoreDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IPurchaseModel : IId
|
|
|
|
|
{
|
2024-04-29 13:31:37 +04:00
|
|
|
|
int VendorId { get; }
|
2024-04-17 21:44:51 +04:00
|
|
|
|
double Cost { get; }
|
|
|
|
|
DateTime DateCreate { get; }
|
2024-05-01 11:55:41 +04:00
|
|
|
|
DateTime? DateImplement { get; }
|
2024-04-30 19:12:40 +04:00
|
|
|
|
public Dictionary<int, (IBuildModel, int)> PurchaseBuilds { get; }
|
|
|
|
|
public Dictionary<int, (IProductModel, int)> PurchaseProducts { get; }
|
2024-04-17 21:44:51 +04:00
|
|
|
|
}
|
|
|
|
|
}
|