Interface IPageableResults
Represents information about a result set that can be arranged into pages.
Namespace: Benday.Common
Assembly: Benday.Common.dll
Syntax
public interface IPageableResults
Properties
| Improve this Doc View SourceCurrentPage
Index of the current page in the result
Declaration
int CurrentPage { get; set; }
Property Value
Type | Description |
---|---|
int |
ItemsPerPage
Number of items per result page
Declaration
int ItemsPerPage { get; set; }
Property Value
Type | Description |
---|---|
int |
PageCount
Total number of pages in the result
Declaration
int PageCount { get; set; }
Property Value
Type | Description |
---|---|
int |
TotalCount
Total number of records in the result
Declaration
int TotalCount { get; }
Property Value
Type | Description |
---|---|
int |