public List<Comment> getTaskComments(String taskId, String type) {
return commandExecutor.execute(new GetTaskCommentsByTypeCmd(taskId, type));
}
public List<Comment> getCommentsByType(String type) {
return commandExecutor.execute(new GetTypeCommentsCmd(type));
}