Exemplo n.º 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (IsPostBack)
            {
                return;
            }

            using (var mdse = new RelatorioMetaDesenvolvimentoSE())
            {
                WebFormHelper.PreencherLista(mdse.ObterNivelOcupacionalTodos(), cbxNivelOcupacional, true);
                WebFormHelper.PreencherLista(mdse.ObterUfTodos(), cbxUF, true);
                WebFormHelper.PreencherLista(mdse.ObterCategoriaConteudoTodos(), cbxCategoriaSE, true);
            }
        }