Files
PyroFetes-Sujet1/PyroFetes/Specifications/Quotations/GetAllQuotationSpec.cs
T

14 lines
300 B
C#

using Ardalis.Specification;
using PyroFetes.Models;
namespace PyroFetes.Specifications.Quotations;
public class GetAllQuotationSpec : Specification<Quotation>
{
public GetAllQuotationSpec()
{
Query
.Where(x => true)
.OrderByDescending(x => x.Id);
}
}