Ejemplo n.º 1
0
        public ActionResult _IndexTemplateObjectFormats(string tabId, int parentId, int page, int pageSize, string orderBy)
        {
            var listCommand   = GetListCommand(page, pageSize, orderBy);
            var serviceResult = _formatService.GetTemplateObjectFormatsByObjectId(listCommand, parentId);

            return(new TelerikResult(serviceResult.Data, serviceResult.TotalRecords));
        }
Ejemplo n.º 2
0
        public ActionResult _IndexTemplateObjectFormats(string tabId, int parentId, GridCommand command)
        {
            var serviceResult = _formatService.GetTemplateObjectFormatsByObjectId(command.GetListCommand(), parentId);

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