Ejemplo n.º 1
0
        public PriceOrderLogCollection FetchByQuery(Query qry)
        {
            PriceOrderLogCollection coll = new PriceOrderLogCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public PriceOrderLogCollection FetchAll()
        {
            PriceOrderLogCollection coll = new PriceOrderLogCollection();
            Query qry = new Query(PriceOrderLog.Schema);

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