new Integer(2013));
Student student3 = new Student("Bob", "Reimer", "C13Robert.Reimer",
new Integer(2013));
Student student4 = new Student("Andrew", "Callow", "C13Andrew.Callow",
new Integer(2013));
Section section1 = new Section("M1A");
Section section2 = new Section("M2B");
Instructor instructor1 = new Instructor("David", "Roberts", "David.Roberts");
instructor1.setDomainAccount(instructor1.getWebID());
Instructor instructor2 = new Instructor("Sarah", "O'Reilly", "Sarah.OReilly");
instructor2.setDomainAccount(instructor2.getWebID());
// Set the Instructors for Sections 1 & 2
section1.setInstructor(instructor1);
section2.setInstructor(instructor2);
// Add Instructors to Course
course.addInstructor(instructor1);
course.addInstructor(instructor2);
// Add Students 1 & 2 to Section 1
section1.addStudent(student1);
student1.addSection(section1);
section1.addStudent(student2);
student2.addSection(section1);
// Add Students 3 & 4 to Section 2
section2.addStudent(student3);
student3.addSection(section2);
section2.addStudent(student4);
student4.addSection(section2);
// Add Sections 1 & 2 to Course
section1.setCourse(course);
section2.setCourse(course);
course.addSection(section1);
course.addSection(section2);
return course;
}