private void btnCrearConvenio_Click(object sender, EventArgs e)
        {
            frmConvenioPago f = new frmConvenioPago(_idSocio, _ImporteDeuda, _CantidadCuotas, _ImporteCuota,
                                                    mtxtFechaConvenio.Text, _CanonMunicipal);

            f.Text = "Nuevo Convenio";
            f.Show();
        }
        private void btnCrearConvenioPagoMoratoria_Click(object sender, EventArgs e)
        {
            frmConvenioPago f = new frmConvenioPago(_idSocio, _ImporteDeuda, _CantidadCuotas, _ImporteCuota,
                                                    dtpFechaConvenio.Text, _CanonMunicipal);

            f.Text = "Nuevo Convenio";
            f.Show();
            btnAceptarMoratoria.Enabled = true;
        }
 private void btnCrearConvenioPagoMoratoria_Click(object sender, EventArgs e)
 {
     frmConvenioPago f = new frmConvenioPago(_idSocio, _ImporteDeuda, _CantidadCuotas, _ImporteCuota,
                                             dtpFechaConvenio.Text, _CanonMunicipal);
     f.Text = "Nuevo Convenio";
     f.Show();
     btnAceptarMoratoria.Enabled = true;
 }
 private void btnCrearConvenio_Click(object sender, EventArgs e)
 {
     frmConvenioPago f = new frmConvenioPago(_idSocio, _ImporteDeuda, _CantidadCuotas, _ImporteCuota,
                                             mtxtFechaConvenio.Text, _CanonMunicipal);
     f.Text = "Nuevo Convenio";
     f.Show();
 }