Ejemplo n.º 1
0
 public Comment getCommentById(long commentId) {
   return taskCommentService.getCommentById(commentId);
 }
Ejemplo n.º 2
0
 public void deleteComment(long taskId, long commentId) {
   taskCommentService.deleteComment(taskId, commentId);
 }
Ejemplo n.º 3
0
 public List<Comment> getAllCommentsByTaskId(long taskId) {
   return taskCommentService.getAllCommentsByTaskId(taskId);
 }
Ejemplo n.º 4
0
 public long addComment(long taskId, Comment comment) {
   return taskCommentService.addComment(taskId, comment);
 }