forked from sanchezvem/PyroFetes
13 lines
294 B
C#
13 lines
294 B
C#
using Ardalis.Specification;
|
|
using PyroFetes.Models;
|
|
|
|
namespace PyroFetes.Specifications.Quotations;
|
|
|
|
public sealed class GetQuotationByIdSpec : Specification<Quotation>
|
|
{
|
|
public GetQuotationByIdSpec(int quotationId)
|
|
{
|
|
Query
|
|
.Where(x => x.Id == quotationId);
|
|
}
|
|
} |