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

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

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