forked from sanchezvem/pyrofetes-backend
14 lines
300 B
C#
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);
|
|
}
|
|
} |