private void btnExcluir_Click(object sender, EventArgs e)
        {
            Controller.PagamentoController _ctlFormaPag = new Controller.PagamentoController();

            int intCod = 0;

            int.TryParse(ttbCodigo.Text, out intCod);

            if (intCod > 0)
            {
                if (MessageBox.Show("Confirma exclusão da Forma de Pagamento?", "Forma de Pagamento", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK)
                {
                    bool blnExcluiu = _ctlFormaPag.excluirFormaPagamento(intCod);
                    if (blnExcluiu)
                    {
                        MessageBox.Show("Forma de Pagamento Excluída");
                        _limpaCampos();
                        pesquisaFormaPagamento();
                        _btnNovo();
                    }
                    else
                    {
                        MessageBox.Show("Erro ao excluir!");
                    }
                }
                else
                {
                    MessageBox.Show("Cancela ?");
                }
            }
        }