added pdf generation for all orders

This commit is contained in:
2025-12-03 17:41:19 +01:00
parent bee1cfb0e3
commit e440dcd2b5
10 changed files with 403 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
namespace PyroFetes.DTO.DeliveryNote.Request;
public class GetDeliveryNotePdfDto
{
public int Id { get; set; }
}

View File

@@ -0,0 +1,6 @@
namespace PyroFetes.DTO.PurchaseOrder.Request;
public class GetPurchaseOrderPdfDto
{
public int Id { get; set; }
}