Ejemplo n.º 1
0
 public Page<BlogComment> fetchPageByPostId(Page<BlogComment> page, long postId) {
   return commentDao.fetchByPostId(page, postId);
 }
Ejemplo n.º 2
0
 public void modifyBlogComment(BlogComment comment) {
   commentDao.update(comment);
 }
Ejemplo n.º 3
0
 public void removeBlogComment(BlogComment comment) {
   commentDao.delete(comment.getId());
 }
Ejemplo n.º 4
0
 public void createBlogComment(BlogComment comment) {
   commentDao.insert(comment);
 }