private void btnPesquisarAdvogado_Click(object sender, EventArgs e)
        {
            frmLocalizar frmLocalizar = new frmLocalizar("CLIENTE");
            DialogResult result       = frmLocalizar.ShowDialog();

            if (result == DialogResult.OK)
            {
                CLIENTE_DTO DTO = new CLIENTE_DTO();
                DTO             = new CLIENTE_BLL().Selecione(Convert.ToInt32(frmLocalizar.ID_REGISTRO));
                txtCliente.Text = DTO.NOME_COMPLETO;
                CLIENTE_DTO     = DTO;
            }
        }
        private void BtnExcluir_Click(object sender, EventArgs e)
        {
            try
            {
                int id = Convert.ToInt32(dtgDados.CurrentRow.Cells["ID"].Value.ToString());

                bool result = new CLIENTE_BLL().Excluir(id);

                if (result)
                {
                    MessageBox.Show("Registro" + id + "excluído com sucesso!");
                    PopularGrid();
                }
                else
                {
                    MessageBox.Show("Nao foi possível excluir este registro!");
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Nao foi possível excluir este registro.", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }