This commit is contained in:
2025-09-19 15:59:16 -04:00
parent b3a66024d0
commit db75cdf10f
3 changed files with 3 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ import lodge.reservation.Reservation;
public final class CabinReservation extends Reservation { public final class CabinReservation extends Reservation {
public CabinReservation() { public CabinReservation() {
super();
this.setType('C'); this.setType('C');
this.setNumberOfBeds(1); this.setNumberOfBeds(1);
this.setKitchen(KitchenTypeEnum.Kitchenette); this.setKitchen(KitchenTypeEnum.Kitchenette);

View File

@@ -15,6 +15,7 @@ import lodge.reservation.Reservation;
public final class HotelReservation extends Reservation{ public final class HotelReservation extends Reservation{
public HotelReservation() { public HotelReservation() {
super();
this.setType('H'); this.setType('H');
this.setNumberOfBeds(2); this.setNumberOfBeds(2);
this.setNumberOfBeds(2); this.setNumberOfBeds(2);

View File

@@ -14,6 +14,7 @@ import lodge.reservation.Reservation;
public final class HouseReservation extends Reservation { public final class HouseReservation extends Reservation {
public HouseReservation() { public HouseReservation() {
super();
this.setType('Z'); this.setType('Z');
this.setNumberOfBeds(2); this.setNumberOfBeds(2);
this.setNumberOfBedRooms(1); this.setNumberOfBedRooms(1);