
A list of courses is added to Gradebook this week, and a roster of students is added to the courses.
In this assignment, you will create methods and call them from button-click event handlers, passing parameters to them and accepting return values from them. Create the new classes and lists as needed.
Create any button(s) and button click event handler(s) in the WPF window designer (if specified in the class diagram).

// Create an instance of the Gradebook class.
// Set field values of Blackboard (except for current student).
// Define a temporary course variable.
// Create an instance of the Course class (OOP 1).
// Set field values of the OOP 1 course.
// Add the OOP 1 course to the gradebook.
// Create an instance of the Course class (OOP 2).
// Set field values of the OOP 2 course.
// Define a temporary student variable.
// Create an instance of the Student class (Arthur).
// Set field values of the current student Arthur.
// Set field values of the advisor.
// Set field values of the assistant.
// Set field values of the Arthur's transcript.
// Define a temporary grade record variable.
// Create an instance of the GradeRecord class (Database Concepts).
// Set field values of the Database Concepts grade record.
// Add the Database Concepts grade record to the transcript's list of grades.
// Create an instance of the GradeRecord class (Web Design 1).
// Set field values of the Web Design 1 grade record.
// Add the Web Design 1 grade record to the transcript's list of grades.
// Create an instance of the GradeRecord class (OOP 1).
// Set field values of the OOP 1 grade record.
// Add the OOP 1 grade record to the transcript's list of grades.
// Set Arthur to be the current student.
// Add Arthur to the OOP 2 roster.
// Create an instance of the Student class (Pete).
// Set field values of Pete.
// Set field values of Pete's transcript.
// Add Pete to the Roster.
// Create an instance of the Student class (Gwen).
// Set field values of Gwen.
// Set field values of Gwen's transcript.
// Add Gwen to the Roster.
// Add the OOP 2 course to the gradebook.
// Set field values of my theme.
// Set field values of the student calendar.
