forked from sanchezvem/PyroFetes
13 lines
312 B
C#
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);
|
|
}
|
|
} |