Creating of price's endpoints

This commit is contained in:
2025-11-06 18:52:18 +01:00
parent 1c898f9144
commit 33719b708e
5 changed files with 158 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ public class CreatePriceDto
public int SupplierDeliveryDelay { get; set; }
public int ProductId { get; set; }
public int ProductReferences { get; set; }
public string? ProductReferences { get; set; }
public string? ProductName { get; set; }
public decimal ProductDuration {get; set;}
public decimal ProductCaliber { get; set; }

View File

@@ -2,6 +2,7 @@
public class PatchPriceSellingPriceDto
{
public int Id { get; set; }
public int ProductId { get; set; }
public int SupplierId { get; set; }
public decimal SellingPrice { get; set; }
}