Exemplo n.º 1
0
        public async Task <IActionResult> DownloadOfferDocumentAsync(int offerId)
        {
            var fileStream = await _documentGenerationManager.DownloadOfferDocument(offerId);

            var file = new FileStreamResult(fileStream, "application/pdf");

            file.FileDownloadName = fileStream.Name;
            return(file);
        }