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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #3
0
        public ProductListPriceHistoryCollection FetchByID(object ProductID)
        {
            ProductListPriceHistoryCollection coll = new ProductListPriceHistoryCollection().Where("ProductID", ProductID).Load();

            return(coll);
        }