Example #1
0
 /// <summary>
 /// 获取市名称
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public string get_city_title(int id)
 {
     BLL.city bll = new BLL.city();
     Model.city model = bll.GetModel(id);
     if (model != null)
     {
         return model.CityName;
     }
     else
     {
         return "";
     }
 }
Example #2
0
 /// <summary>
 /// 获取市名称
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public string get_city_title(int id)
 {
     BLL.city   bll   = new BLL.city();
     Model.city model = bll.GetModel(id);
     if (model != null)
     {
         return(model.CityName);
     }
     else
     {
         return("");
     }
 }