public void deleteAttachment(String attachmentId) {
commandExecutor.execute(new DeleteAttachmentCmd(attachmentId));
}
public void deleteTaskAttachment(String taskId, String attachmentId) {
commandExecutor.execute(new DeleteTaskAttachmentCmd(taskId, attachmentId));
}