public VgiAbvdCollection FetchByQuery(Query qry) { VgiAbvdCollection coll = new VgiAbvdCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public VgiAbvdCollection FetchAll() { VgiAbvdCollection coll = new VgiAbvdCollection(); Query qry = new Query(VgiAbvd.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public VgiAbvdCollection FetchByID(object IdVGIABVD) { VgiAbvdCollection coll = new VgiAbvdCollection().Where("idVGIABVD", IdVGIABVD).Load(); return(coll); }