public static void Renderizar() { Console.WriteLine("Lista de Disciplina:\n"); foreach (Mentor mentorCadastrado in MentorDAO.Listar()) { Console.WriteLine(mentorCadastrado); } }
private void Window_Loaded(object sender, RoutedEventArgs e) { //Carregar os dados de mentores cboMentores.ItemsSource = MentorDAO.Listar(); //cboMentores.DisplayMemberPath = "Nome"; cboMentores.SelectedValuePath = "Id"; //Carregar os dados da disciplina cboDisciplinas.ItemsSource = DisciplinaDAO.Listar(); //cboDisciplinas.DisplayMemberPath = "Nome"; cboDisciplinas.SelectedValuePath = "Id"; }
public IActionResult Cadastrar() { ViewBag.Mentores = new SelectList(_mentorDAO.Listar(), "Id", "Nome"); ViewBag.Disciplinas = new SelectList(_disciplinaDAO.Listar(), "Id", "Nome"); return(View()); }