Merge branch 'master' of https://xp-dev.com/git/RRRRHHHH_Code
[RRRRHHHH_Code] / ruralHouses / src / businessLogic / HouseManager.java
index aca30dc..fb3e664 100644 (file)
@@ -54,10 +54,10 @@ public class HouseManager extends UnicastRemoteObject implements HouseInterface
 
 
 
-       public Vector<RuralHouse> getHouses(String name,String town, int nBed, int nKit,
+       public Vector<RuralHouse> getHouses(Owner ow, String name,String town, int nBed, int nKit,
                        int nBath, int nPark, int nLiv) {
 
-               return this.dbMngr.getRuralHouses( name ,town, nBed, nKit, nBath, nPark, nLiv);
+               return this.dbMngr.getRuralHouses( ow, name ,town, nBed, nKit, nBath, nPark, nLiv);
        }
 
        @Override