Example #1
0
        public PnCurriculumReferenciumCollection FetchByQuery(Query qry)
        {
            PnCurriculumReferenciumCollection coll = new PnCurriculumReferenciumCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Example #2
0
        public PnCurriculumReferenciumCollection FetchAll()
        {
            PnCurriculumReferenciumCollection coll = new PnCurriculumReferenciumCollection();
            Query qry = new Query(PnCurriculumReferencium.Schema);

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