public InterfazDeporteReporte(InterfazFiltroReporte ventana) { MiVentana = ventana; InitializeComponent(); cbxAlta.Checked = true; cbxBaja.Checked = true; CargarInterfazBuena(); }
public InterfazSociosReporte(InterfazFiltroReporte ventana) { MiVentana = ventana; InitializeComponent(); cbxActivo.Checked = true; cbxMenor.Checked = true; cbxVitalicio.Checked = true; CargarInterfazBuena(); }
public InterfazIngresosReporte(InterfazFiltroReporte ventana) { MiVentana = ventana; InitializeComponent(); this.cbxMes.SelectedIndex = 0; this.cbxMesInicio.SelectedIndex = 0; this.cbxMesFin.SelectedIndex = 11; CargarInterfazBuena(); }
public InterfazEmpleadosReporte(InterfazFiltroReporte ventana) { MiVentana = ventana; InitializeComponent(); cbxDirectivo.Checked = true; cbxProfesor.Checked = true; cbxSecretaria.Checked = true; cbxMantenimiento.Checked = true; CargarInterfazBuena(); }
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(); }