Beispiel #1
0
 public InterfazDeporteReporte(InterfazFiltroReporte ventana)
 {
     MiVentana = ventana;
     InitializeComponent();
     cbxAlta.Checked = true;
     cbxBaja.Checked = true;
     CargarInterfazBuena();
 }
Beispiel #2
0
 public InterfazSociosReporte(InterfazFiltroReporte ventana)
 {
     MiVentana = ventana;
     InitializeComponent();
     cbxActivo.Checked    = true;
     cbxMenor.Checked     = true;
     cbxVitalicio.Checked = true;
     CargarInterfazBuena();
 }
Beispiel #3
0
        public InterfazIngresosReporte(InterfazFiltroReporte ventana)
        {
            MiVentana = ventana;
            InitializeComponent();
            this.cbxMes.SelectedIndex       = 0;
            this.cbxMesInicio.SelectedIndex = 0;
            this.cbxMesFin.SelectedIndex    = 11;

            CargarInterfazBuena();
        }
Beispiel #4
0
 public InterfazEmpleadosReporte(InterfazFiltroReporte ventana)
 {
     MiVentana = ventana;
     InitializeComponent();
     cbxDirectivo.Checked     = true;
     cbxProfesor.Checked      = true;
     cbxSecretaria.Checked    = true;
     cbxMantenimiento.Checked = true;
     CargarInterfazBuena();
 }
Beispiel #5
0
        public InterfazCategoriaReporte(InterfazFiltroReporte ventana)
        {
            MiVentana = ventana;
            InitializeComponent();
            cbxCancelado.Checked = true;
            cbxIniciado.Checked  = true;
            cbxPendiente.Checked = true;
            cbxTerminado.Checked = true;

            ControladorDeporte CDeporte = new ControladorDeporte();

            List <ModelDeporte> lista = new List <ModelDeporte>();

            lista = CDeporte.ListarTodosDeportes();
            cbxDeporte.DataSource = lista;
            lista.Insert(0, new ModelDeporte()
            {
                IdDeporte = 0, Nombre = "Seleccione un deporte"
            });
            cbxDeporte.ValueMember   = "IdDeporte";
            cbxDeporte.DisplayMember = "Nombre";
            CargarInterfazBuena();
        }