static async getStudentCourseList()

in edu-analytics-be/web/app/controller/studentController.js [121:128]


    static async getStudentCourseList(req, res, next) {
        try {
            const data = await StudentEntity.getStudentCourses();
            res.status(200).send(data);
        } catch (error) {
            next(error);
        }
    }