public LocationCollection FetchByQuery(Query qry) { LocationCollection coll = new LocationCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public LocationCollection FetchAll() { LocationCollection coll = new LocationCollection(); Query qry = new Query(Location.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public LocationCollection FetchByID(object LocationID) { LocationCollection coll = new LocationCollection().Where("LocationID", LocationID).Load(); return(coll); }