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

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

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