Skip to content

Latest commit

 

History

History
31 lines (14 loc) · 1.06 KB

File metadata and controls

31 lines (14 loc) · 1.06 KB

Expedia-like Website Simulation in C++17

This project simulates a simple Expedia-like website where users can manage their travel itineraries.

The project adheres to core OOP principles such as encapsulation, inheritance, and abstraction to promote clean, maintainable, and scalable code

Inversion of Control to Decouple object creation and dependencies to enhance flexibility and testability.

For Simplicity

Dummy data is used

2 Types of users: Admin & customer. Our code focus on customer part

Local APIs is used to call for flights and hotels

Key Features:

Itinerary Management: Users can create and manage multiple itineraries, each containing flights and hotels.

Flight & Hotel Booking: Users have the ability to add flights and hotels to their itineraries, mimicking a basic travel booking system

1

2

3