private void btnSalvar_Click(object sender, EventArgs e)
        {
            Conexao    c     = new Conexao();
            FormaPagto forma = new FormaPagto();

            forma.DescFormaPagto = txtFormaPagto.Text;

            FormaPagtoController fController = new FormaPagtoController();

            MessageBox.Show(fController.cadastrarFormaPagto(forma));
            c.desconectar();
        }