public ActionResult <bool> ExistsRating(int studentId, int internshipId)
 {
     return(Ok(_ratingService.ExistsRating(studentId, internshipId)));
 }