public async Task <IActionResult> PostAttachments([FromForm] IFormFileCollection fileCollection) { var addedAttachments = await _attachmentService.AddAttachmentsAsync(fileCollection); return(addedAttachments.ToActionResult()); }