Added new endpoint to manage deliveries

This commit is contained in:
2026-05-26 10:53:10 +01:00
parent 57646a1417
commit b13b8ebfb6
3 changed files with 39 additions and 1 deletions
@@ -11,6 +11,7 @@ public class GetAllDeliveryNoteSpec : Specification<DeliveryNote>
.Include(x => x.Deliverer)
.Include(x => x.ProductDeliveries)!
.ThenInclude(x => x.Product)
.Where(x => true);
.Where(x => true)
.OrderByDescending(x => x.ExpeditionDate);
}
}