Example #1
0
        public DataSet GetBrandInfoByID(int BrandID)
        {
            dbproduct = new DBProduct();
            DS        = new DataSet();
            int Result = 0;

            try
            {
                DS = dbproduct.GetBrandInfoByID(BrandID);
                return(DS);
            }
            catch (Exception)
            {
                throw;
            }
        }