getStudents abstract method
- ISchoolCourseDto course
Fetches the list of students enrolled in the specified course.
Returns student information (ID and name) for all students enrolled in
the given course.
The course should be obtained from getCourseList.
System accounts (e.g., "istudyoaa") are automatically filtered out.
Throws an Exception if no student data exists.
Implementation
Future<List<StudentDto>> getStudents(ISchoolCourseDto course);