forked from sanchezvem/PyroFetes
13 lines
283 B
C#
13 lines
283 B
C#
using Ardalis.Specification;
|
|
using PyroFetes.Models;
|
|
|
|
namespace PyroFetes.Specifications.Products;
|
|
|
|
public sealed class GetProductByIdSpec : Specification<Product>
|
|
{
|
|
public GetProductByIdSpec(int? productId)
|
|
{
|
|
Query
|
|
.Where(p => p.Id == productId);
|
|
}
|
|
} |