Exemple #1
0
        public PricerInputTypeCollection FetchByQuery(Query qry)
        {
            PricerInputTypeCollection coll = new PricerInputTypeCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #2
0
        public PricerInputTypeCollection FetchAll()
        {
            PricerInputTypeCollection coll = new PricerInputTypeCollection();
            Query qry = new Query(PricerInputType.Schema);

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