Пример #1
0
        public async Task <IActionResult> PostAttachments([FromForm] IFormFileCollection fileCollection)
        {
            var addedAttachments = await _attachmentService.AddAttachmentsAsync(fileCollection);

            return(addedAttachments.ToActionResult());
        }