コード例 #1
0
ファイル: CommentsLogic.java プロジェクト: tzablock/teammates
 public List<CommentAttributes> getCommentsForGiver(String courseId, String giverEmail)
     throws EntityDoesNotExistException {
   verifyIsCoursePresent(courseId, "get");
   return commentsDb.getCommentsForGiver(courseId, giverEmail);
 }