Correcting all

This commit is contained in:
2025-10-08 11:13:37 +01:00
parent 0ddf5d380a
commit af208c152b
2 changed files with 2 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ public class Movement
[Required] public int Quantity {get; set;}
public List<Product>? Products { get; set; }
public int? SourceWarehouseId {get; set;}
public Warehouse? SourceWarehouse {get; set;}
public int? DestinationWarehouseId {get; set;}

View File

@@ -16,6 +16,7 @@ public class Warehouse
public List<WarehouseProduct>? WarehouseProducts { get; set; }
public List<MaterialWarehouse>? MaterialWarehouses {get; set;}
public List<Movement>? MovementsSource { get; set; }
public List<Movement>? MovementsDestination { get; set; }
}