public IEnumerable <string> GetAllStudentNameByCourseId(int courseId)
 {
     return(enrollmentRepository.GetAllStudentNameByCourseId(courseId));
 }