Пример #1
0
        private async Task <ActionResult> GetData()
        {
            PageSize = paginationService.PageSize;
            AllToDos = await paginationService.GetTodos(GetFilter(), CurrentPage);

            RecordCount = AllToDos.Count();
            return(Page());
        }