Example #1
0
        private void btnDeletar_Click(object sender, EventArgs e)
        {
            Funcionario f = new Funcionario();

            f.ID   = Convert.ToInt32(lblID.Text);
            f.Nome = txtNome.Text;
            string resposta = bll.Deletar(f);

            MessageBox.Show(resposta);
            FormHelpers.FormCleaner.ClearAllForm(this);
            this.dataGridView1.DataSource = new FuncionarioBLL().LerTodos();
        }