public SpecialOfferProductCollection FetchByQuery(Query qry) { SpecialOfferProductCollection coll = new SpecialOfferProductCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public SpecialOfferProductCollection FetchAll() { SpecialOfferProductCollection coll = new SpecialOfferProductCollection(); Query qry = new Query(SpecialOfferProduct.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }