public async Task <ActionResult> PostAirport([FromBody] Airport airport) { await _airportService.AddAirportAsync(airport); return(Ok()); }