private void apresentarSemestre()
        {
            FormSemestre semestreDao = new FormSemestre();
            ICollection<Semestre> semestres = semestreDao.listarSemestre();

            carregaGrid(semestres);
        }
        private void carregarComboSemestre()
        {
            FormSemestre semestreDao = new FormSemestre();
            ICollection<Semestre> semestres = semestreDao.listarSemestre();

            cboSemestre.DataSource = semestres;
            cboSemestre.ValueMember = "semestreId";
            cboSemestre.DisplayMember = "nome";
        }