private void bttExcluir_Click(object sender, EventArgs e) { Pessoa objPessoa = new Pessoa(); objPessoa.CdPessoa = Convert.ToInt32(txtCodigo.Text); DALPessoa pDAL = new DALPessoa(); pDAL.ExcluirArtista(objPessoa.CdPessoa); MessageBox.Show("Artista excluido com sucesso"); CarregarArtista(); }