Updated booking

This commit is contained in:
Mary Tran 2018-11-19 21:37:27 -05:00
parent f69b8a2a1d
commit 944c1226b7

View file

@ -46,6 +46,7 @@ public class Booking {
this.year = year; this.year = year;
this.serviceprovider = serviceprovider; this.serviceprovider = serviceprovider;
this.homeowner = homeowner; this.homeowner = homeowner;
this.service = service;
this.status = Status.PENDING; this.status = Status.PENDING;
} }
@ -118,12 +119,14 @@ public class Booking {
return homeowner; return homeowner;
} }
public Service getService(){ return service; }
public void setHomeowner(HomeOwner homeowner) { public void setHomeowner(HomeOwner homeowner) {
this.homeowner = homeowner; this.homeowner = homeowner;
} }
public Service getService(){ return service; }
public void setService(Service service) { this.service = service;}
public void setStatus(Status status){ public void setStatus(Status status){
this.status = status; this.status = status;
} }