Add endpoint to display all customers, and updated dto to create quotation and purchase order

This commit is contained in:
2026-05-27 12:32:27 +01:00
parent 897b036fc5
commit cac880e35f
7 changed files with 38 additions and 0 deletions
@@ -6,5 +6,7 @@ public class CreateQuotationDto
{
public string? Message { get; set; }
public string? ConditionsSale { get; set; }
public int CustomerId { get; set; }
public int SupplierId { get; set; }
public List<CreateProductQuotationDto>? Products { get; set; }
}