private void LimparCampos()
 {
     VagaEmpregoSelecionada = null;
     txtTitulo.Clear();
     txtDescricao.Clear();
     txtTitulo.ClearInvalid();
     txtDescricao.ClearInvalid();
 }
 private void PreencherCampos(DirectEventArgs e)
 {
     VagaEmpregoSelecionada = new VagaEmpregoBO().SelectById(e.ExtraParams["id"].ToInt32());
     txtTitulo.Text = VagaEmpregoSelecionada.Titulo;
     txtDescricao.Text = VagaEmpregoSelecionada.Descricao;
 }
 private void AbrirCurriculos(object sender, DirectEventArgs e)
 {
     try
     {
         VagaEmpregoSelecionada = new VagaEmpregoBO().SelectById(e.ExtraParams["id"].ToInt32());
         strCurriculos.DataSource = VagaEmpregoSelecionada.Curriculos.ToList();
         strCurriculos.DataBind();
         winCurriculos.Show((Control)sender);
     }
     catch (Exception ex)
     {
         base.MostrarMensagem("Erro", "Erro ao buscar curriculos da vaga de emprego", String.Empty);
     }
 }