Example #1
0
        public ActionResult _IndexPageObjectFormats(string tabId, int parentId, int page, int pageSize, string orderBy)
        {
            var listCommand   = GetListCommand(page, pageSize, orderBy);
            var serviceResult = _formatService.GetPageObjectFormatsByObjectId(listCommand, parentId);

            return(new TelerikResult(serviceResult.Data, serviceResult.TotalRecords));
        }
Example #2
0
        public ActionResult _IndexPageObjectFormats(string tabId, int parentId, GridCommand command)
        {
            var serviceResult = _formatService.GetPageObjectFormatsByObjectId(command.GetListCommand(), parentId);

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