예제 #1
0
 public async Task <ReturnResult <Guid> > AddAttachment(AttachmentTypesEnm attachmentType, IFormFile file, string title = null)
 {
     return(await _attachmentRepository.AddAttachment(attachmentType, _appSettingsService.AttachmentsPath, file, title));
 }