Exemplo n.º 1
0
 public void atualizaSecao()
 {
     funcCota                   = new Funcionario();
     daoCota_Mensal             = new DAOCota_mensal();
     funcCota.Matricula         = txbMatricula.Text;
     funcCota.Nome              = txbNome.Text;
     funcCota.ID                = Int32.Parse(ddFuncao.SelectedValue);
     Session["lstFuncCotaMens"] = daoCota_Mensal.listFuncCota(funcCota, Int16.Parse(ddMes.SelectedValue), Int16.Parse(ddAno.SelectedValue));
     (Session["selectFuncCotaMens"] as List <Funcionario>).Clear();
 }