예제 #1
0
        public PhpssAccountCollection FetchByQuery(Query qry)
        {
            PhpssAccountCollection coll = new PhpssAccountCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public PhpssAccountCollection FetchAll()
        {
            PhpssAccountCollection coll = new PhpssAccountCollection();
            Query qry = new Query(PhpssAccount.Schema);

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