|
|
|
@ -20,7 +20,7 @@ namespace Microsoft.eShopWeb.ApplicationCore.Specifications |
|
|
|
|
|
|
|
public int Take { get; private set; } |
|
|
|
public int Skip { get; private set; } |
|
|
|
public bool isPagingEnabled { get; private set; } = false; |
|
|
|
public bool IsPagingEnabled { get; private set; } = false; |
|
|
|
|
|
|
|
protected virtual void AddInclude(Expression<Func<T, object>> includeExpression) |
|
|
|
{ |
|
|
|
@ -34,7 +34,7 @@ namespace Microsoft.eShopWeb.ApplicationCore.Specifications |
|
|
|
{ |
|
|
|
Skip = skip; |
|
|
|
Take = take; |
|
|
|
isPagingEnabled = true; |
|
|
|
IsPagingEnabled = true; |
|
|
|
} |
|
|
|
protected virtual void ApplyOrderBy(Expression<Func<T, object>> orderByExpression) |
|
|
|
{ |
|
|
|
|