Ejemplo n.º 1
0
 public Comment findById(Long id) {
   return commRepo.findById(id);
 }
Ejemplo n.º 2
0
 public void delete(Set<Comment> comments) {
   commRepo.delete(comments);
 }
Ejemplo n.º 3
0
 public Comment save(Comment comment) {
   return commRepo.save(comment);
 }
Ejemplo n.º 4
0
 public Set<Comment> findByTaskIdOrderByDateDesc(String id) {
   return commRepo.findByTaskIdOrderByDateDesc(id);
 }