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