Files
pyrofetes-backend/PyroFetes/Specifications/DeliveryNotes/GetAllDeliveryNoteSpec.cs
T

17 lines
467 B
C#

using Ardalis.Specification;
using PyroFetes.Models;
namespace PyroFetes.Specifications.DeliveryNotes;
public class GetAllDeliveryNoteSpec : Specification<DeliveryNote>
{
public GetAllDeliveryNoteSpec()
{
Query
.Include(x => x.Deliverer)
.Include(x => x.ProductDeliveries)!
.ThenInclude(x => x.Product)
.OrderBy(x => x.RealDeliveryDate)
.ThenByDescending(x => x.ExpeditionDate);
}
}