Exemplo n.º 1
0
        public HitblCommunityCtyCollection FetchByQuery(Query qry)
        {
            HitblCommunityCtyCollection coll = new HitblCommunityCtyCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public HitblCommunityCtyCollection FetchAll()
        {
            HitblCommunityCtyCollection coll = new HitblCommunityCtyCollection();
            Query qry = new Query(HitblCommunityCty.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }