public Offer(Website website, Room room, int price) { this.website = website; this.room = room; this.price = price; }
public Offer() { website = null; room = null; price = 0; }