public TamHpvCollection FetchByQuery(Query qry) { TamHpvCollection coll = new TamHpvCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public TamHpvCollection FetchAll() { TamHpvCollection coll = new TamHpvCollection(); Query qry = new Query(TamHpv.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public TamHpvCollection FetchByID(object IdHpv) { TamHpvCollection coll = new TamHpvCollection().Where("idHpv", IdHpv).Load(); return(coll); }