public ActionResult _MultipleSelectForWorkflow(
            string tabId, int parentId, [FromForm(Name = "IDs")] string ids, int page, int pageSize, string orderBy)
        {
            var listCommand   = GetListCommand(page, pageSize, orderBy);
            var serviceResult = _statusTypeService.ListForWorkflow(listCommand, Converter.ToInt32Collection(ids, ','), parentId);

            return(new TelerikResult(serviceResult.Data, serviceResult.TotalRecords));
        }
        public ActionResult _MultipleSelectForWorkflow(string tabId, string IDs, GridCommand command, int parentId)
        {
            var serviceResult = _statusTypeService.ListForWorkflow(command.GetListCommand(), Converter.ToInt32Collection(IDs, ','), parentId);

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