public IEnumerable <Student> GetAllStudent(int courseId)
 {
     return(studentCourseRepository.GetAllByCourseId(courseId).ToList());
 }