Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard

Diff Revisions d30bcc ... vs ccac99 ... for ruralHouses/src/domain/Booking.java

Diff revisions: vs.
  @@ -26,6 +26,13 @@
26 26 }
27 27
28 28
29 + public Booking(int bN , Offer offer,Client client, Date bookDate) {
30 + this.bookingNumber = bN;
31 + this.offer = offer;
32 + this.client=client;
33 + this.bookingDate= bookDate; }
34 +
35 +
29 36 public int getBookNumber() {
30 37 return this.bookingNumber;
31 38 }