예제 #1
0
 public List<Comment> getComments(Date commentDate, int start, int count) {
   return dao.getComments(commentDate, start, count);
 }
예제 #2
0
 public List<Comment> getLowScoreComments(int score, int start, int count) {
   return dao.getLowScoreComments(score, start, count);
 }
예제 #3
0
 public int getCommentCount(Date commentDate) {
   return dao.getCommentCount(commentDate);
 }
예제 #4
0
 public List<Comment> getUserComments(String userId, int start, int count) {
   return dao.getUserComments(userId, start, count);
 }
예제 #5
0
 public int getLowScoreCommentCount(int score) {
   return dao.getLowScoreCommentCount(score);
 }
예제 #6
0
 public int getUserCommentCount(String userId) {
   return dao.getUserCommentCount(userId);
 }
예제 #7
0
 public List<Comment> getBookComments(String bookId, int start, int count) {
   return dao.getBookComments(bookId, start, count);
 }
예제 #8
0
 public int getCountByBook(String bookId) {
   return dao.getCountByBook(bookId);
 }
예제 #9
0
 public double getAvgScoreByBook(String bookId) {
   return dao.getAvgScoreByBook(bookId);
 }
예제 #10
0
 public void save(Comment comment) {
   dao.save(comment);
 }