public frm_historial_pagos(int nroSocio, string nombre)
 {
     InitializeComponent();
     service            = new Service_cuota();
     socio_seleccionado = nroSocio;
     this.Text          = nombre;
 }
 public frm_principal()
 {
     InitializeComponent();
     svInscripcion = new Service_Inscripcion();
     svCuota       = new Service_cuota();
     svSocio       = new Service_socio();
 }
Exemple #3
0
 public frm_detalle_cuota(int cod, Form principal)
 {
     InitializeComponent();
     this.cod       = cod;
     service        = new Service_cuota();
     this.principal = principal;
 }