private void btnAdd_Click(object sender, EventArgs e)
        {
            FormAddAluno formAddAluno = new FormAddAluno(_repositorio);

            formAddAluno.ShowDialog();
            RefreshView();
        }
        private void btnEdit_Click(object sender, EventArgs e)
        {
            FormAddAluno formAddAluno = new FormAddAluno(_repositorio, (Aluno)dgvAlunos.SelectedRows[0].DataBoundItem);

            formAddAluno.ShowDialog();
            RefreshView();
        }