예제 #1
0
        public System.Data.DataSet GetPage(int start, int count, ref int totalCount,
          string product_Type)
        {
            System.Data.DataSet ds = new System.Data.DataSet();
            //_is_Single_Transaction = false;
            try
            {
               DataAccessLayer.Product_Type.Product_Type obj = new DataAccessLayer.Product_Type.Product_Type(start, count, totalCount,
               product_Type);
                obj.SetConnection();
                _db = obj.GetDatabase();
                ds = obj.GetPage();
                totalCount = obj._ID;
            }
            catch
            {
                //_base.RollBackTransaction();
                //throw;
            }

            return ds;
        }