getCourse abstract method

Future<CourseDto> getCourse(
  1. String courseId
)

Fetches detailed information about a specific course from the catalog.

Returns course details including bilingual names, descriptions, credits, and hours per week.

The courseId should be a course code obtained from the course.id field of a ScheduleDto.

Throws an Exception if the course details table is not found.

Implementation

Future<CourseDto> getCourse(String courseId);