public JsonResult mesXOcorrencia()
        {
            if (this.Logado != ((char)Enums.Logado.Sim).ToString())
            {
                return(this.Json(new { redirectUrl = Url.Action("Login", "Login"), Logado = true }, JsonRequestBehavior.AllowGet));
            }

            try
            {
                List <MesXOcorrencia> mesOcorrencia    = new List <MesXOcorrencia>();
                N0203REGBusiness      N0203ORIBusiness = new N0203REGBusiness();
                mesOcorrencia = N0203ORIBusiness.MesXOcorrencia();
                return(this.Json(new { mesOcorrencia }, JsonRequestBehavior.AllowGet));
            }
            catch (Exception ex)
            {
                this.Session["ExceptionErro"] = ex;
                return(this.Json(new { redirectUrl = Url.Action("ErroException", "Erro"), ErroExcecao = true }, JsonRequestBehavior.AllowGet));
            }
        }