public override void AddData() { var turmas = _turmaService.GetAll(); var dialog = new AlunoDialog(turmas); dialog.Aluno = new AlunoDTO(); if (dialog.ShowDialog() == DialogResult.OK) { _alunoService.Add(dialog.Aluno); _control.RefreshGrid(); } }
public override void UpdateData() { AlunoDTO aluno = _control.GetAluno(); if (aluno == null) { MessageBox.Show("Nenhum aluno selecionado. Selecionar um aluno antes de solicitar a edição"); return; } var turmas = _turmaService.GetAll(); var dialog = new AlunoDialog(turmas); dialog.Aluno = aluno; if (dialog.ShowDialog() == DialogResult.OK) { _alunoService.Update(dialog.Aluno); _control.RefreshGrid(); } }