Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard

Diff Revisions e90cb4 ... vs 4bc36b ... for ruralHouses/src/businessLogic/HouseManager.java

Diff revisions: vs.
  @@ -54,10 +54,10 @@
54 54
55 55
56 56
57 - public Vector<RuralHouse> getHouses(String name,String town, int nBed, int nKit,
57 + public Vector<RuralHouse> getHouses(Owner ow, String name,String town, int nBed, int nKit,
58 58 int nBath, int nPark, int nLiv) {
59 59
60 - return this.dbMngr.getRuralHouses( name ,town, nBed, nKit, nBath, nPark, nLiv);
60 + return this.dbMngr.getRuralHouses( ow, name ,town, nBed, nKit, nBath, nPark, nLiv);
61 61 }
62 62
63 63 @Override