The bug found in the presentation that we forgot to review has been fixed
[RRRRHHHH_Code] / ruralHouses / src / domain / Booking.java
index 4b68a70..2d61f0f 100644 (file)
@@ -3,7 +3,7 @@ package domain;
 import java.io.Serializable;
 import java.util.Date;
 
-public class Booking implements Serializable  {
+public class Booking implements Serializable {
 
        /**
         * 
@@ -13,25 +13,22 @@ public class Booking implements Serializable  {
        private Date bookingDate;
        private Client client;
        private Offer offer;
-       
-       
-       
-       public Booking(int bN , Offer offer,Client client) {
-               
+
+       public Booking(int bN, Offer offer, Client client) {
+
                this.bookingNumber = bN;
                this.offer = offer;
-               this.client=client;
-               //Booking date is assigned to actual date
-               this.bookingDate= new java.util.Date(System.currentTimeMillis());
+               this.client = client;
+               // Booking date is assigned to actual date
+               this.bookingDate = new java.util.Date(System.currentTimeMillis());
        }
-       
 
-       public Booking(int bN , Offer offer,Client client, Date bookDate) {
+       public Booking(int bN, Offer offer, Client client, Date bookDate) {
                this.bookingNumber = bN;
                this.offer = offer;
-               this.client=client;
-               this.bookingDate= bookDate;     }
-
+               this.client = client;
+               this.bookingDate = bookDate;
+       }
 
        public int getBookNumber() {
                return this.bookingNumber;
@@ -45,7 +42,6 @@ public class Booking implements Serializable  {
                return this.offer;
        }
 
-
        public void setBookDate(Date bookDate) {
                this.bookingDate = bookDate;
        }
@@ -53,7 +49,7 @@ public class Booking implements Serializable  {
        public Date getBookDate() {
                return this.bookingDate;
        }
-       
+
        public Client getClient() {
                return client;
        }
@@ -61,5 +57,5 @@ public class Booking implements Serializable  {
        public void setClient(Client client) {
                this.client = client;
        }
-       
+
 }
\ No newline at end of file