Beispiel #1
0
        public async Task <ActionResult> DownloadAttacment(string FileToken)
        {
            var result = await _attachmentFilesAppService.DownloadAttaachment(FileToken);

            return(File(result.Memory, result.ApplicationType, result.FileName));
        }