Esempio n. 1
0
 private List<CommentAttributes> getCommentsForGiverAndStatus(
     String courseId, String giverEmail, CommentStatus status) throws EntityDoesNotExistException {
   verifyIsCoursePresent(courseId, "get");
   return commentsDb.getCommentsForGiverAndStatus(courseId, giverEmail, status);
 }