логика сборки + логика покупок (подкорректированы purchaseBinding и BuildSearch)

This commit is contained in:
2024-04-29 13:31:37 +04:00
parent 06ec3952d3
commit 10ac29df01
6 changed files with 322 additions and 5 deletions

View File

@@ -2,10 +2,9 @@
{
public interface IPurchaseModel : IId
{
int VendorId { get; }
double Cost { get; }
DateTime DateCreate { get; }
int VendorId { get; }
double Sum { get; }
public Dictionary<int, (IBuildModel, int)> PurchaseBuild { get; }
public Dictionary<int, (IProductModel, int)> PurchaseProduct { get; }
}