/// <summary>
 /// 饮食商铺求购页面
 /// </summary>
 /// <param name="id">第几页</param>
 /// <returns>View</returns>
 public ActionResult Restaurants(int id)
 {
     var model = new HouseBuySearchModel(id);
     if (id <= 0)
     {
         return RedirectToAction("PageNotFound", "PageLink");
     }
     if (id <= 10)
     {
         model.MainHouse = houseCache.GetMainHouseBuyRestaurants().Skip((id - 1) * 10).Take(10).ToList();
     }
     else
     {
         //缓存中数量超过100个的时候 才可能有后续数据 这个时候才去读取 否则不读取  默认100个   
         if (model.MainHouse.Count == 100)
         {
             int page = id - 1;
             model.MainHouse = houseSearch.SearchByCatagroy(ChannelListDetailCatagroy.Restaurants, page, 10);
         }
     }
     
     model.CheckModel();
     return View(model);
 }
 public ActionResult HouseBuySearch(string key, int page, 
     int area, int city,
     int clc)
 {
     var model = new HouseBuySearchModel(page);
     model.Key = key;
     model.AreaId = area;
     model.CityId = city;
     model.Clc = clc;
     model.MainHouse = buyHouseSearch.SearchByKey(key, area, city, page - 1, 10, clc);
     model.CheckModel();
     return View(model);
 }