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; }