getCourseTable method
Gets the course schedule for a semester.
Use getCourseOffering for related data (teachers, classrooms, schedules).
Throws Exception on network failure.
Implementation
Future<List<CourseOffering>> getCourseTable({
required String username,
required Semester semester,
}) async {
throw UnimplementedError();
}