private BookingDetails(string firstname, string lastname, int totalprice, bool depositpaid, BookingDates bookingdates, string additionalneeds) { this.firstname = firstname; this.lastname = lastname; this.totalprice = totalprice; this.depositpaid = depositpaid; this.bookingdates = bookingdates; this.additionalneeds = additionalneeds; }
public void SetBookingDates(BookingDates bookingdates) { this.bookingdates = bookingdates; }