示例#1
0
 public async Task <IActionResult> GetAllRegionAnnualReports()
 {
     return(StatusCode(StatusCodes.Status200OK,
                       new { annualReports = await _RegionAnnualReportService.GetAllAsync(await _userManager.GetUserAsync(User)) }));
 }