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

            try
            {
                var N9999USUBusiness = new N9999USUBusiness();

                List <N0204ORI>  ListaN0204ORI    = new List <N0204ORI>();
                N0203REGBusiness N0203ORIBusiness = new N0203REGBusiness();
                ListaN0204ORI = N0203ORIBusiness.QuantidadeProtocolosPorArea(dias, situacao);

                return(this.Json(new { ListaN0204ORI }, JsonRequestBehavior.AllowGet));
            }
            catch (Exception ex)
            {
                this.Session["ExceptionErro"] = ex;
                return(this.Json(new { redirectUrl = Url.Action("ErroException", "Erro"), ErroExcecao = true }, JsonRequestBehavior.AllowGet));
            }
        }