package businessLogic; import java.util.Date; import domain.Offer; import domain.Owner; import domain.RuralHouse; public interface HouseManagerInterface { public boolean registerNewHouse(int houseNumber, Owner owner, String town, int nRooms, int nKitchens, int nBaths, int nLivings, int nParkings); public boolean registerNewHouse(int houseNumber, Owner owner, String description, String town, int nRooms, int nKitchens, int nBaths, int nLivings, int nParkings); public void modifyHouse(int houseNumber, Owner owner, String description, String town, int nRooms, int nKitchens, int nBaths, int nLivings, int nParkings); public Offer setOffers(RuralHouse ruralHouse, Date firstDay, Date lastDay, float price); }