コード例 #1
0
        public CustomizedProductDisplayCollection FetchByQuery(Query qry)
        {
            CustomizedProductDisplayCollection coll = new CustomizedProductDisplayCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public CustomizedProductDisplayCollection FetchAll()
        {
            CustomizedProductDisplayCollection coll = new CustomizedProductDisplayCollection();
            Query qry = new Query(CustomizedProductDisplay.Schema);

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