Files
PyroFetes-Sujet1/PyroFetes/Specifications/DeliveryNotes/GetDeliveryNoteByIdSpec.cs
2025-11-14 18:11:54 +01:00

13 lines
312 B
C#

using Ardalis.Specification;
using PyroFetes.Models;
namespace PyroFetes.Specifications.DeliveryNotes;
public sealed class GetDeliveryNoteByIdSpec : Specification<DeliveryNote>
{
public GetDeliveryNoteByIdSpec(int deliveryNoteId)
{
Query
.Where(x => x.Id == deliveryNoteId);
}
}