Ejemplo n.º 1
0
        public DataTable GetDeletedProductGroupListByDateRangeAll(string fromDate, string toDate, string search)
        {
            ProductGroupDAL productGroup = new ProductGroupDAL();

            try
            {
                LumexDBPlayer db = LumexDBPlayer.Start();
                DataTable dt = productGroup.GetDeletedProductGroupListByDateRangeAll(fromDate, toDate, search, db);
                db.Stop();

                return dt;
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                productGroup = null;
            }
        }