public ActionResult _StatusHistoryList( string tabId, int parentId, int page, int pageSize, string orderBy) { var listCommand = GetListCommand(page, pageSize, orderBy); var result = ArticleService.ArticleStatusHistory(listCommand, parentId); return(new TelerikResult(result.Data, result.TotalRecords)); }
public ActionResult _StatusHistoryList(string tabId, int parentId, int id, GridCommand command) { var result = ArticleService.ArticleStatusHistory(command.GetListCommand(), parentId); return(new TelerikResult(result.Data, result.TotalRecords)); }