public void CarregarPorTipo(byte rea_tipo)
        {
            try
            {
                ddlCombo.Items.Clear();
                ddlCombo.DataSource = REL_GraficoAtendimentoBO.SelecionaPorTipoRelatorio(rea_tipo, ApplicationWEB.AppMinutosCacheLongo);
                CarregarMensagemSelecione();

                ddlCombo.DataBind();
            }
            catch (Exception)
            {
                lblMessage.Text    = "Erro ao tentar carregar " + lblTitulo.Text.Replace('*', ' ').ToLower() + ".";
                lblMessage.Visible = true;
            }
        }