Пример #1
0
        public BdsHematologiumCollection FetchByQuery(Query qry)
        {
            BdsHematologiumCollection coll = new BdsHematologiumCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #2
0
        public BdsHematologiumCollection FetchAll()
        {
            BdsHematologiumCollection coll = new BdsHematologiumCollection();
            Query qry = new Query(BdsHematologium.Schema);

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