public void deleteTaskAttachment(String taskId, String attachmentId) {
commandExecutor.execute(new DeleteTaskAttachmentCmd(taskId, attachmentId));
}
public Attachment getAttachment(String attachmentId) {
return commandExecutor.execute(new GetAttachmentCmd(attachmentId));
}