コード例 #1
0
 public Comment findById(Long id) {
   return commRepo.findById(id);
 }
コード例 #2
0
 public void delete(Set<Comment> comments) {
   commRepo.delete(comments);
 }
コード例 #3
0
 public Comment save(Comment comment) {
   return commRepo.save(comment);
 }
コード例 #4
0
 public Set<Comment> findByTaskIdOrderByDateDesc(String id) {
   return commRepo.findByTaskIdOrderByDateDesc(id);
 }