private void btnGravar_Click(object sender, EventArgs e)
        {
            try
            {
                Types.DepartamentoType type = new Types.DepartamentoType();
                type.Descricao = txtDescricao.Text;

                DepartamentoBLL itemBLL = new DepartamentoBLL();
                if (txtID.Text == "")
                {
                    txtID.Text = Convert.ToString(itemBLL.insert(type));
                }
                else
                {
                    type.IdDepartamento = Convert.ToInt32(txtID.Text);
                    itemBLL.alterar(type);
                }
            }
            catch (Exception erro)
            {
                MessageBox.Show("Erro ao gravar. Mensagem: " +
                    erro.Message, "Erro", MessageBoxButtons.OK,
                    MessageBoxIcon.Error);
            }
            findAll();
        }
        private void btnExcluir_Click(object sender, EventArgs e)
        {
            if (MessageBox.Show("Tem certeza que deseja excluir?", "Exclusão", MessageBoxButtons.YesNo, MessageBoxIcon.Error) == System.Windows.Forms.DialogResult.Yes)
            {
                try
                {
                    Types.DepartamentoType type = new Types.DepartamentoType();
                    type.IdDepartamento = Convert.ToInt32(txtID.Text);

                    DepartamentoBLL itemBLL = new DepartamentoBLL();
                    itemBLL.excluir(type);
                }
                catch (Exception erro)
                {
                    MessageBox.Show("Erro ao excluir. Mensagem: " +
                        erro.Message, "Erro", MessageBoxButtons.OK,
                        MessageBoxIcon.Error);
                }
                findAll();
                LimparCampos();
            }
        }
 private void findAll()
 {
     DepartamentoBLL bll = new DepartamentoBLL();
     dataGridView1.DataSource = bll.select();
 }