private void Window_Loaded_1(object sender, RoutedEventArgs e) { LaboratorioBLL labs = new LaboratorioBLL(); DocenteBLL docentes = new DocenteBLL(); AsignaturaBLL asignaturas = new AsignaturaBLL(); GrupoBLL grupos = new GrupoBLL(); cbLab.ItemsSource = labs.ObtenerAll().OrderBy(s => s.ID); cbDoc.ItemsSource = docentes.ObtenerAll().OrderBy(s => s.Nombre); cbMat.ItemsSource = asignaturas.ObtenerAll().OrderBy(s => s.Nombre); cbGrp.ItemsSource = grupos.ObtenerAll().OrderBy(s=>s.Nombre); this.inicializarCtrls(); }
private void CargaDocentes() { DocenteBLL docentes = new DocenteBLL(); cbDisp.ItemsSource = docentes.ObtenerAll(); }