Example #1
0
        public async Task <IActionResult> GetAirportByIdent(string ident)
        {
            var airport = await _airportService.GetAirportByIdent(ident);

            return(Ok(airport));
        }