// 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);