creating purchaseproduct's endpoint and fix error in dto

This commit is contained in:
2025-10-16 22:53:14 +01:00
parent 791eff9256
commit e4e6c1c3f7
11 changed files with 55 additions and 19 deletions

View File

@@ -13,5 +13,5 @@ public class GetDeliveryNoteDto
public int DelivererId { get; set; }
public string? DelivererTransporter { get; set; }
public List<GetProductDeliveryDto> Products { get; set; }
public List<GetProductDeliveryDto>? Products { get; set; }
}