예제 #1
0
        public HitblEventTypeEvtCollection FetchByQuery(Query qry)
        {
            HitblEventTypeEvtCollection coll = new HitblEventTypeEvtCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public HitblEventTypeEvtCollection FetchAll()
        {
            HitblEventTypeEvtCollection coll = new HitblEventTypeEvtCollection();
            Query qry = new Query(HitblEventTypeEvt.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #3
0
        public HitblEventTypeEvtCollection FetchByID(object EvtId)
        {
            HitblEventTypeEvtCollection coll = new HitblEventTypeEvtCollection().Where("EVT_ID", EvtId).Load();

            return(coll);
        }