11 lines
237 B
C#
11 lines
237 B
C#
using System.Linq.Expressions;
|
|
|
|
namespace Core.Specifications
|
|
{
|
|
public interface ISpecification<T>
|
|
{
|
|
Expression<Func<T, bool>> Criteria {get; }
|
|
List<Expression<Func<T, object>>> Includes {get; }
|
|
|
|
}
|
|
} |