Example #1
0
 public CourseWithDetails()
 {
     Instructor = new InstructorBase();
     StudentIds = new List <string>();
     Incidents  = new List <IncidentBase>();
 }
 public IncidentWithDetails()
 {
     dateReported = DateTime.Now;
     Instructor   = new InstructorBase();
     Students     = new List <StudentBase>();
 }
Example #3
0
 public CourseBase()
 {
     Instructor = new InstructorBase();
     StudentIds = new List <string>();
 }