Ejemplo n.º 1
0
 public void addToStudents(Student t)
 {
     StudentIds.Add(t.StudentId);
     Studenten.Add(t);
 }
Ejemplo n.º 2
0
 private void Toevoegen()
 {
     Studenten.Add(new Student(++newId, "New student", 201));
     SelectedItem = Studenten[Studenten.Count - 1];
 }
Ejemplo n.º 3
0
 private void Toevoegen()
 {
     Studenten.Add(new Student("Student " + (++nummer), "2 ITF", nummer));
 }