Esempio n. 1
0
        public HitblPagePagCollection FetchByQuery(Query qry)
        {
            HitblPagePagCollection coll = new HitblPagePagCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 2
0
        public HitblPagePagCollection FetchAll()
        {
            HitblPagePagCollection coll = new HitblPagePagCollection();
            Query qry = new Query(HitblPagePag.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 3
0
        public HitblPagePagCollection FetchByID(object PagId)
        {
            HitblPagePagCollection coll = new HitblPagePagCollection().Where("PAG_ID", PagId).Load();

            return(coll);
        }