コード例 #1
0
 public frm_historial_pagos(int nroSocio, string nombre)
 {
     InitializeComponent();
     service            = new Service_cuota();
     socio_seleccionado = nroSocio;
     this.Text          = nombre;
 }
コード例 #2
0
ファイル: frm_principal.cs プロジェクト: cabezonbhh/sport_gym
 public frm_principal()
 {
     InitializeComponent();
     svInscripcion = new Service_Inscripcion();
     svCuota       = new Service_cuota();
     svSocio       = new Service_socio();
 }
コード例 #3
0
 public frm_detalle_cuota(int cod, Form principal)
 {
     InitializeComponent();
     this.cod       = cod;
     service        = new Service_cuota();
     this.principal = principal;
 }