-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathBooking.hpp
44 lines (37 loc) · 974 Bytes
/
Booking.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef BOOKING_HPP
#define BOOKING_HPP
#include <string>
#include "Guest.hpp"
#include "Room.hpp"
enum class BookingStatus {
CONFIRMED,
CHECKED_IN,
CHECKED_OUT,
CANCELLED
};
class Booking {
private:
std::string bookingId;
Guest* guest;
Room* room;
std::string checkInDate;
std::string checkOutDate;
int numberOfNights;
double totalAmount;
BookingStatus status;
public:
Booking(std::string bookingId, Guest* guest, Room* room,
std::string checkInDate, std::string checkOutDate, int numberOfNights);
std::string getBookingId() const;
Guest* getGuest() const;
Room* getRoom() const;
std::string getCheckInDate() const;
std::string getCheckOutDate() const;
int getNumberOfNights() const;
double getTotalAmount() const;
BookingStatus getStatus() const;
void calculateTotalAmount();
void setStatus(BookingStatus status);
void displayInfo() const;
};
#endif