Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a solution to Airline / Hotel Reservation System #689

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Classes

**Product Inventory Project** - Create an application which manages an inventory of products. Create a product class which has a price, id, and quantity on hand. Then create an *inventory* class which keeps track of various products and can sum up the inventory value. [[Drhealsgood (Python)]](https://github.com/Drhealsgood/miniprojects/blob/master/class_projects/product_inventory/product_inventory.py) [[Goldsmith (Ruby)]](https://github.com/goldsmith/ruby-projects/blob/master/Classes/inventory.rb) [[quitrk (JavaScript)]](https://github.com/quitrk/LearningJS/blob/master/Classes/00.%20Product%20Inventary%20Project.js)[[luisccastillo (C#)]](https://github.com/luisccastillo/Projects/blob/master/Classes/product_inventory.cs) [[ScottKolo (Go)]](https://github.com/ScottKolo/GoProjects/blob/master/Classes/inventory.go) [[Daytron (Python)]](https://github.com/Daytron/Projects/blob/master/Classes/product_inventory_daytron.py)[[Daytron (Java)]](https://github.com/Daytron/Projects/tree/master/Classes/ProductInventoryProject) [[anubhavmaity(Java)]](https://github.com/anubhavmaity/InventoryManagement)

**Airline / Hotel Reservation System** - Create a reservation system which books airline seats or hotel rooms. It charges various rates for particular sections of the plane or hotel. Example, first class is going to cost more than coach. Hotel rooms have penthouse suites which cost more. Keep track of when rooms will be available and can be scheduled.
**Airline / Hotel Reservation System** - Create a reservation system which books airline seats or hotel rooms. It charges various rates for particular sections of the plane or hotel. Example, first class is going to cost more than coach. Hotel rooms have penthouse suites which cost more. Keep track of when rooms will be available and can be scheduled.[[Vinayak-D (Python)]](https://github.com/Vinayak-D/HotelReservation)

**Bank Account Manager** - Create a class called Account which will be an abstract class for three other classes called CheckingAccount, SavingsAccount and BusinessAccount. Manage credits and debits from these accounts through an ATM style program. [[Daytron (Python)]](https://github.com/Daytron/Projects/blob/master/Classes/bank_account_manager.py) [[viktorahlstrom (Bash)]](https://github.com/viktorahlstrom/all/blob/master/coding-problems-solved/projects-solutions/bank_manager/bank_manager.sh)

Expand Down