public async Task <IActionResult> Export4TW(int year) { var stream = await _statisticsService.Export4TW(year); return(File(stream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")); }