public HitblPagePagCollection FetchByQuery(Query qry) { HitblPagePagCollection coll = new HitblPagePagCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public HitblPagePagCollection FetchAll() { HitblPagePagCollection coll = new HitblPagePagCollection(); Query qry = new Query(HitblPagePag.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public HitblPagePagCollection FetchByID(object PagId) { HitblPagePagCollection coll = new HitblPagePagCollection().Where("PAG_ID", PagId).Load(); return(coll); }