Files
MetaCourse/pyrofetes/pyrofetes-backend/PyroFetes/Specifications/DeliveryNotes/GetDeliveryNoteByIdSpec.cs
T
2026-05-05 10:53:52 +02: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);
}
}