public JsonResult ExcluirAgrupamento(string agrupamento) { if (this.Logado != ((char)Enums.Logado.Sim).ToString()) { return(this.Json(new { redirectUrl = Url.Action("Login", "Login"), Logado = true }, JsonRequestBehavior.AllowGet)); } try { N0203REGBusiness N0203REGBusines = new N0203REGBusiness(); bool resposta = N0203REGBusines.ExcluirAgrupamento(agrupamento); string dados = resposta ? "" : "Não é possível excluir agrupamento já integrado!"; return(this.Json(new { resposta, dados }, JsonRequestBehavior.AllowGet)); } catch (Exception ex) { this.Session["ExceptionErro"] = ex; return(this.Json(new { redirectUrl = Url.Action("ErroException", "Erro"), ErroExcecao = true }, JsonRequestBehavior.AllowGet)); } }