Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 612 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 612 Bytes

What is "FlightAvailSample", and what can we learn from it?

This is a sample project to retrieve available flights from multiple suppliers through API calls. It includes a service that uses a supplier factory to obtain the appropriate supplier to call its API.

Each supplier is an adapter that makes an API call to retrieve data, and then maps the response to the desired format.

We can learn:

# Adapter pattern
# Factory pattern
# IHttpClientFactory And IHttpClient
# Delegating Handlers
# HttpClient Hadler
# How to configure logger in a non hosted console application