feat: remove Supplier/SupplierOffering/PurchaseItem entities and migrate schema

This commit is contained in:
aj
2026-08-01 08:49:05 -04:00
parent 41944638c6
commit 1b4d5f76a8
9 changed files with 868 additions and 318 deletions
-1
View File
@@ -13,6 +13,5 @@ public class StockItem
public DateTime? UpdatedAt { get; set; }
public Material Material { get; set; } = null!;
public ICollection<SupplierOffering> SupplierOfferings { get; set; } = new List<SupplierOffering>();
public ICollection<StockTransaction> Transactions { get; set; } = new List<StockTransaction>();
}