public bool Inform(SemanticValueDict sem, Student student) { Student = student; if (Semantics == null) { Semantics = sem; } else { foreach (KeyValuePair<String, SemanticValueDict> pair in sem) { Semantics[pair.Key] = pair.Value; } } return ValidateCurrentData(); }
public ActionDetectedEventArgs(CommandTypes t, Student student) { this.CommandType = t; this.Student = student; }
protected DialogManager() { CurrStudent = new Student(DegreeCatalog.Instance.Degrees.FirstOrDefault()); }
public Schedule(Student student) { Student = student; Courses = new ObservableCollection<ScheduledCourse>(); }