Skip to content

Commit b87f66d

Browse files
TODO added
1 parent 7ea851d commit b87f66d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/AspnetRunAngular.Core/Interfaces/ISpecification.cs

+7
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,20 @@ namespace AspnetRunAngular.Core.Interfaces
77
public interface ISpecification<T>
88
{
99
Expression<Func<T, bool>> Criteria { get; }
10+
1011
List<Expression<Func<T, object>>> Includes { get; }
12+
1113
List<string> IncludeStrings { get; }
14+
1215
Expression<Func<T, object>> OrderBy { get; }
16+
1317
Expression<Func<T, object>> OrderByDescending { get; }
1418

19+
// TODO: Paging should be optimized
1520
int Take { get; }
21+
1622
int Skip { get; }
23+
1724
bool isPagingEnabled { get; }
1825
}
1926
}

0 commit comments

Comments
 (0)