public List<Brand> GetBrandList(string keyWords, int pageSize, int pageIndex, ref int totalCount, ref int pageCount, string clientID) { var dal = new ProductsDAL(); DataSet ds = dal.GetBrandList(keyWords, pageSize, pageIndex, ref totalCount, ref pageCount, clientID); List<Brand> list = new List<Brand>(); foreach (DataRow dr in ds.Tables[0].Rows) { Brand model = new Brand(); model.FillData(dr); model.City = CommonBusiness.Citys.Where(c => c.CityCode == model.CityCode).FirstOrDefault(); list.Add(model); } return list; }
public List<Brand> GetBrandList(string clientID) { var dal = new ProductsDAL(); DataTable dt = dal.GetBrandList(clientID); List<Brand> list = new List<Brand>(); foreach (DataRow dr in dt.Rows) { Brand model = new Brand(); model.FillData(dr); list.Add(model); } return list; }
public Brand GetBrandByBrandID(string brandID) { var dal = new ProductsDAL(); DataTable dt = dal.GetBrandByBrandID(brandID); Brand model = new Brand(); if (dt.Rows.Count > 0) { model.FillData(dt.Rows[0]); model.City = CommonBusiness.Citys.Where(c => c.CityCode == model.CityCode).FirstOrDefault(); } return model; }