Made an update on database and added CreatingDeliveryNotee

This commit is contained in:
Cristiano
2025-11-13 17:28:08 +01:00
parent ae834d1e3c
commit 2385b7b687
10 changed files with 81 additions and 3 deletions

View File

@@ -5,7 +5,8 @@ public class CreateDeliveryNoteDto
public string? TrackingNumber { get; set; }
public DateOnly EstimateDeliveryDate { get; set; }
public DateOnly ExpeditionDate { get; set; }
public DateOnly RealDeliveryDate { get; set; }
public int DelivererId { get; set; }
public Dictionary<int,int>? ProductQuantities { get; set; }
}