Пример #1
0
        public ActionResult _ArticlesForApproval(string tabId, int parentId, int page, int pageSize, string orderBy)
        {
            var listCommand   = GetListCommand(page, pageSize, orderBy);
            var serviceResult = ArticleService.ArticlesForApproval(listCommand);

            return(new TelerikResult(serviceResult.Data, serviceResult.TotalRecords));
        }
Пример #2
0
        public ActionResult _ArticlesForApproval(string tabId, int parentId, int id, GridCommand command)
        {
            var serviceResult = ArticleService.ArticlesForApproval(command.GetListCommand());

            return(new TelerikResult(serviceResult.Data, serviceResult.TotalRecords));
        }