Files
MetaCourse/pyrofetes/pyrofetes-backend/PyroFetes/Specifications/Deliverers/GetDelivererByIdSpec.cs
T
2026-05-05 10:53:52 +02:00

13 lines
294 B
C#

using Ardalis.Specification;
using PyroFetes.Models;
namespace PyroFetes.Specifications.Deliverers;
public sealed class GetDelivererByIdSpec : Specification<Deliverer>
{
public GetDelivererByIdSpec(int delivererId)
{
Query
.Where(x => x.Id == delivererId);
}
}