private Boolean accomodationSet = false; //accomodation flag for calculating the cost public Booking() { accomodation = new Accomodation(); pitch = new Pitch(); customer = new Customer(); }
public Pitch setPitch(Pitch p) { pitch = p; return(pitch); }