private void btnCancelarOpereaciones_Click(object sender, EventArgs e)
 {
     try
     {
         Fecha fecha = new Fecha();
         int   mes   = (fecha.getMesPasado());
         gestorAfiliados.CancelarSolicitudDebito(mes);
         this.Dispose();
         FormListadoSociosCuotas f = new FormListadoSociosCuotas();
         f.ShowDialog();
     }
     catch (Exception)
     {
     }
 }
示例#2
0
        private void administracionAfiliadosConDébitoToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormListadoSociosCuotas nuevo = new FormListadoSociosCuotas();

            nuevo.ShowDialog();
        }