private void Editar(Professor prof) { CrudProfessor professor = new CrudProfessor(); Curso curso = new Curso(); ProfessorBLL professorBLL = new ProfessorBLL(); if ((txtNome.Text.Trim() == string.Empty) || (cmbCursos.Text.Trim() == string.Empty) || (cmIdCurso.Text.Trim() == string.Empty)) { MessageBox.Show("Campos Obrigatórios a serem preenchidos!", "Atenção", MessageBoxButtons.OK, MessageBoxIcon.Error); txtNome.BackColor = Color.Yellow; txtMatricula.BackColor = Color.Yellow; cmbCursos.BackColor = Color.Yellow; cmIdCurso.BackColor = Color.Yellow; } else { prof.Id_curso = int.Parse(cmIdCurso.Text); prof.Nome = txtNome.Text.ToUpper(); curso.Nome_disc = cmbCursos.Text.ToUpper(); curso.Id_curso = int.Parse(cmIdCurso.Text); prof.Matricula = int.Parse(txtMatricula.Text); professorBLL.Editar(prof); MessageBox.Show("Dados alterados com Sucesso!"); Listar(); LimparCampos(); } }
private void CarregaComboBox() { //ComboBox Professor ProfessorBLL professorbll = new ProfessorBLL(); cbbProfessor.DataSource = professorbll.Preencher(); cbbProfessor.DisplayMember = "nome"; cbbProfessor.ValueMember = "id"; //ComboBox Disciplina DisciplinaBLL disciplinabll = new DisciplinaBLL(); cbbDisciplina.DataSource = disciplinabll.Preencher(); cbbDisciplina.DisplayMember = "nome"; cbbDisciplina.ValueMember = "id"; //ComboBox Sala SalaBLL salabll = new SalaBLL(); cbbSala.DataSource = salabll.Preencher(); cbbSala.DisplayMember = "nome"; cbbSala.ValueMember = "id"; //ComboBox Serie SerieBLL seriebll = new SerieBLL(); cbbSerie.DataSource = seriebll.Preencher(); cbbSerie.DisplayMember = "nome"; cbbSerie.ValueMember = "id"; //ComboBox Turma TurmaBLL turmabll = new TurmaBLL(); cbbTurma.DataSource = turmabll.Preencher(); cbbTurma.DisplayMember = "nome"; cbbTurma.ValueMember = "id"; }
private void CarregaComboBox() { ProfessorBLL professor = new ProfessorBLL(); cbbProfessor.DataSource = professor.Preencher(); cbbProfessor.DisplayMember = "nome"; cbbProfessor.ValueMember = "id"; DisciplinaBLL disciplina = new DisciplinaBLL(); cbbDisciplina.DataSource = disciplina.Preencher(); cbbDisciplina.DisplayMember = "nome"; cbbDisciplina.ValueMember = "id"; }
private void Listar() { ProfessorBLL professorBLL = new ProfessorBLL(); dg_dados.DataSource = professorBLL.Listar(); dg_dados.Columns[0].HeaderText = "MATRICULA"; dg_dados.Columns[1].HeaderText = "PROFESSOR"; dg_dados.Columns[2].HeaderText = "DISCIPLINA"; dg_dados.Columns[0].Width = 80; dg_dados.Columns[1].Width = 300; dg_dados.Columns[2].Width = 200; LimparCampos(); }
public void CarregarCombos() { var lUuario = UsuarioBLL.BuscarPorId(Convert.ToInt32(Session["UsuarioId"])); var lProfessor = ProfessorBLL.Listar().Where(x => x.Id == lUuario.Pessoa.Id).FirstOrDefault(); ddlTurma.DataSource = lProfessor.Turmas; ddlTurma.DataBind(); ddlTurma.Items.Insert(0, new ListItem("Selecione", "0")); ddlDia.DataSource = Enum.GetNames(typeof(EDiaSemana)); ddlDia.DataBind(); ddlDia.Items.Insert(0, new ListItem("Selecione", "0")); ddlHorarioAula.Items.Clear(); ddlHorarioAula.Items.Insert(0, new ListItem("Selecione", "0")); }
private void btCadastrarProfessor_Click(object sender, EventArgs e) { if (!string.IsNullOrEmpty(txtProfessor.Text)) { ProfessorBLL bll = new ProfessorBLL(); ProfessorDTO dto = new ProfessorDTO(); string nome = txtProfessor.Text.Replace("'", "''"); dto.Nome = nome; bll.Inserir(dto); MessageBox.Show("Cadastro efetuado com sucesso!", "Sucesso"); LimpaTela(2); return; } MessageBox.Show("Por favor preencha o campo.", "Aviso"); return; }
private void Carregar() { ddlProfessor.DataSource = ProfessorBLL.Listar().OrderBy(x => x.Nome); ddlProfessor.DataBind(); ddlProfessor.Items.Insert(0, new ListItem("Selecione", "0")); ddlDisciplina.DataSource = DisciplinaBLL.Listar().OrderBy(x => x.Descricao); ddlDisciplina.DataBind(); ddlDisciplina.Items.Insert(0, new ListItem("Selecione", "0")); ddlTurma.DataSource = TurmaBLL.Listar().OrderBy(x => x.Descricao); ddlTurma.DataBind(); ddlTurma.Items.Insert(0, new ListItem("Selecione", "0")); ddlProfessor.SelectedIndex = ddlTurma.SelectedIndex = ddlDisciplina.SelectedIndex = 0; }