The bug found in the presentation that we forgot to review has been fixed
[RRRRHHHH_Code] / ruralHouses / src / domain / Booking.java
index 60cfd2f..2d61f0f 100644 (file)
@@ -14,14 +14,6 @@ public class Booking implements Serializable {
        private Client client;
        private Offer offer;
 
-       public Booking(int bN, Offer offer, Client client, Date date) {
-               this.bookingNumber = bN;
-               this.offer = offer;
-               this.client = client;
-               // Booking date is assigned to actual date
-               this.bookingDate = date;
-       }
-
        public Booking(int bN, Offer offer, Client client) {
 
                this.bookingNumber = bN;
@@ -31,11 +23,11 @@ public class Booking implements Serializable {
                this.bookingDate = new java.util.Date(System.currentTimeMillis());
        }
 
-       public void imprimete() {
-               System.out.println(bookingNumber);
-               System.out.println(bookingDate);
-               System.out.println(client.toString());
-               System.out.println(offer);
+       public Booking(int bN, Offer offer, Client client, Date bookDate) {
+               this.bookingNumber = bN;
+               this.offer = offer;
+               this.client = client;
+               this.bookingDate = bookDate;
        }
 
        public int getBookNumber() {
@@ -50,10 +42,6 @@ public class Booking implements Serializable {
                return this.offer;
        }
 
-       public float getPrice() {
-               return this.offer.getPrice();
-       }
-
        public void setBookDate(Date bookDate) {
                this.bookingDate = bookDate;
        }