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

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

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