mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 07:01:16 +03:00
12 lines
274 B
C#
12 lines
274 B
C#
using Ardalis.Specification;
|
|
|
|
namespace PracticeCalendar.Domain.Entities.Product.Specifications
|
|
{
|
|
public class AllProductsSpecification : Specification<Product>
|
|
{
|
|
public AllProductsSpecification()
|
|
{
|
|
Query.AsNoTracking();
|
|
}
|
|
}
|
|
} |