/// <summary>
        /// 获得数据列表
        /// </summary>
        public List <NoName.NetShop.Model.ContentModel> GetModelList(string strWhere)
        {
            DataSet ds = dal.GetList(strWhere);
            List <NoName.NetShop.Model.ContentModel> modelList = new List <NoName.NetShop.Model.ContentModel>();
            int rowsCount = ds.Tables[0].Rows.Count;

            if (rowsCount > 0)
            {
                NoName.NetShop.Model.ContentModel model;
                for (int n = 0; n < rowsCount; n++)
                {
                    model = new NoName.NetShop.Model.ContentModel();
                    if (ds.Tables[0].Rows[n]["CmsTagId"].ToString() != "")
                    {
                        model.CmsTagId = int.Parse(ds.Tables[0].Rows[n]["CmsTagId"].ToString());
                    }
                    model.Content = ds.Tables[0].Rows[n]["Content"].ToString();
                    if (ds.Tables[0].Rows[n]["LastModifyTime"].ToString() != "")
                    {
                        model.LastModifyTime = DateTime.Parse(ds.Tables[0].Rows[n]["LastModifyTime"].ToString());
                    }
                    modelList.Add(model);
                }
            }
            return(modelList);
        }
 /// <summary>
 /// ��������б�
 /// </summary>
 public List<NoName.NetShop.Model.ContentModel> GetModelList(string strWhere)
 {
     DataSet ds = dal.GetList(strWhere);
     List<NoName.NetShop.Model.ContentModel> modelList = new List<NoName.NetShop.Model.ContentModel>();
     int rowsCount = ds.Tables[0].Rows.Count;
     if (rowsCount > 0)
     {
         NoName.NetShop.Model.ContentModel model;
         for (int n = 0; n < rowsCount; n++)
         {
             model = new NoName.NetShop.Model.ContentModel();
             if(ds.Tables[0].Rows[n]["CmsTagId"].ToString()!="")
             {
                 model.CmsTagId=int.Parse(ds.Tables[0].Rows[n]["CmsTagId"].ToString());
             }
             model.Content=ds.Tables[0].Rows[n]["Content"].ToString();
             if(ds.Tables[0].Rows[n]["LastModifyTime"].ToString()!="")
             {
                 model.LastModifyTime=DateTime.Parse(ds.Tables[0].Rows[n]["LastModifyTime"].ToString());
             }
             modelList.Add(model);
         }
     }
     return modelList;
 }
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public void Update(NoName.NetShop.Model.ContentModel model)
 {
     dal.Update(model);
 }
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public void Add(NoName.NetShop.Model.ContentModel model)
 {
     dal.Add(model);
 }