Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Formulario"/> class.
 /// </summary>
 public Formulario()
 {
     InitializeComponent();
     this.validacion   = new ValidacionCampos();
     this.negocioLista = new NegocioLista();
     this.CargarListaFormulario();
     this.intDestino = -1;
     this.lb_registros_actuales.Text = this.negocioLista.RetornarTotalRegistros().ToString();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="Formulario"/> class.
 /// </summary>
 public Formulario()
 {
     InitializeComponent();
     this.validacion  = new ValidacionCampos();
     this.negocioCola = new NegocioCola();
     this.CargarQueueEncuesta();
     this.intGenero = -1;
     this.intPais   = -1;
     this.lb_registros_actuales.Text = this.negocioCola.RetornarTotalRegistros().ToString();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="Formulario"/> class.
 /// </summary>
 public Formulario()
 {
     InitializeComponent();
     this.validacion  = new ValidacionCampos();
     this.negocioPila = new NegocioPila();
     this.CargarStackEncuesta();
     this.intEstrato   = -1;
     this.intUbicacion = -1;
     this.intCanal     = -1;
     this.lb_registros_actuales.Text = this.negocioPila.RetornarTotalRegistros().ToString();
 }
Beispiel #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Seguridad"/> class.
 /// </summary>
 public Seguridad()
 {
     InitializeComponent();
     this.validacionSeguridad = new ValidacionSeguridad();
     this.validacionCampos    = new ValidacionCampos();
 }