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

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

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