Updated booking

This commit is contained in:
Mary Tran 2018-11-19 21:37:27 -05:00
parent 465c082115
commit fb4c32bcb1

View file

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