Exemplo n.º 1
0
        public async Task <IActionResult> ExportAsync([FromRoute] long id)
        {
            var user = await _userManager.GetUserAsync(User);

            return(File(await _offerService.ExportAsync(id, user), "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"));
        }