public void deleteComment(String commentId) {
commandService.execute(new DeleteCommentCmd(commentId));
}
public HistoryComment addReplyComment(String commentId, String message) {
return commandService.execute(new AddReplyCommentCmd(commentId, message));
}