Esempio n. 1
0
        public DataSet GetSpecialOfferProductsDataSet(string where, string orderBy)
        {
            SpecialOfferProductData data = new SpecialOfferProductData();
            DataSet ds = new DataSet();

            try
            {
                ds = data.GetAllSpecialOfferProductsDynamicDataSet(where, orderBy);
            }
            catch (Exception ex)
            {
                log.Write(ex.Message, "GetSpecialOfferProductsDataSet");
                throw (ex);
            }
            finally
            {
                data = null;
            }
            return(ds);
        }