public async Task RemoveAttachmentAsync(AttachmentDto attachmentDto) { var attachment = _mapper.Map <Attachment>(attachmentDto); await _uploadService.DeleteAttachment(attachment); await _transactionManager.SaveAllAsync(); }