public SearchFlightsQueryHandler(IMapper mapper, IApplicationDbContext context, IAmadeusClient apiServiceClient, IMemoryCache memoryCache)
 {
     _context       = context;
     _mapper        = mapper;
     _client        = apiServiceClient;
     _inMemoryCache = memoryCache;
 }
 public AirportController(IAmadeusClient client, IConfiguration configuration)
 {
     _client        = client;
     _configuration = configuration;
 }