/// botão remover
        private void btnRemover_Click(object sender, EventArgs e)
        {
            if (Convert.ToInt32(txtId.Text) > 0) // se id for  maior que 0
            {
                Camadas.MODEL.Cliente cliente    = new Camadas.MODEL.Cliente();
                Camadas.BLL.Cliente   bllCliente = new Camadas.BLL.Cliente();

                cliente.id = Convert.ToInt32(txtId.Text);
                DialogResult result;
                result = MessageBox.Show("Deseja Remover o cliente Selecionado???",
                                         "Remover Cliente??",
                                         MessageBoxButtons.YesNo,
                                         MessageBoxIcon.Question,
                                         MessageBoxDefaultButton.Button1);
                if (result == DialogResult.Yes)
                {
                    bllCliente.Delete(cliente);
                    MessageBox.Show("Cliente Removido com Sucesso.. :)");
                }
                else
                {
                    MessageBox.Show("Não confirmada Remoção de Cliente...", "Remover?");
                }


                dtgvCliente.DataSource = bllCliente.Select(); //atualizar lista de registro
                habilitaCampos(false);
            }
            else
            {
                MessageBox.Show("Não há registros Selecionados", "Remover?");
            }
        }
        private void btnRemoverCadCli_Click(object sender, EventArgs e)
        {
            //Camadas.DAL.Cliente dalCli = new Camadas.DAL.Cliente();
            Camadas.BLL.Cliente bllCli = new Camadas.BLL.Cliente();

            int id_cliente = Convert.ToInt32(txtIdCadCli.Text);


            bllCli.Delete(id_cliente);
            dgvCadCliente.DataSource = "";
            dgvCadCliente.DataSource = bllCli.Select();
        }