public async Task <IActionResult> QueryWithDelay() { try { return(Ok(await _flightsService.GetFlightQueryWithDelay())); } catch (Exception ex) { return(BadRequest(ex.Message)); } }