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