Add pagination support to the model services. It might be helpful to follow a PagedList<T> pattern to keep the logic for moving through / selecting pages separate.
Requirements
The implementation should cover the following:
[x] Properties to indicate there is no previous or no next page
[x] A count of all records that fit the query criteria
[x] The current page number and the total page count
Summary
Add pagination support to the model services. It might be helpful to follow a
PagedList<T>
pattern to keep the logic for moving through / selecting pages separate.Requirements
The implementation should cover the following: