Exemplo n.º 1
0
 GoLeft(
     this PaginatorState pState)
 {
     return(NextState(pState.With(z => z.CurrentPage.Value--)));
 }
Exemplo n.º 2
0
 GoLeftMore(
     this PaginatorState pState)
 {
     return(NextState(pState.With(z => z.CurrentPage.Value -= pState.PagesToSkip.Value)));
 }
Exemplo n.º 3
0
 GoRight(
     this PaginatorState pState)
 {
     return(NextState(pState.With(z => z.CurrentPage.Value++)));
 }