コード例 #1
0
ファイル: StatsController.cs プロジェクト: ysbakker/WhereBNB
 public async Task <IActionResult> GetAveragePrice(string neighbourhood)
 {
     try
     {
         return(Ok(await _calendarRepository.GetAverageNeighbourhoodPrice(neighbourhood)));
     }
     catch (InvalidOperationException)
     {
         return(NotFound($"Neighbourhood {neighbourhood} not found"));
     }
 }