Guest User

Untitled

a guest
Apr 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. private const int PageSize = 10;
  2.  
  3. // Let an html helper "draw" the page
  4. public ViewResult List(int? pag) {
  5. var page = new PageWith(pag, PageSize);
  6. var items = _repository.GetAll(page);
  7. }
Add Comment
Please, Sign In to add comment