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

            if (rowsCount > 0)
            {
                NoName.NetShop.Model.UserActionLogModel model;
                for (int n = 0; n < rowsCount; n++)
                {
                    model = new NoName.NetShop.Model.UserActionLogModel();
                    if (ds.Tables[0].Rows[n]["UserId"].ToString() != "")
                    {
                        model.UserId = int.Parse(ds.Tables[0].Rows[n]["UserId"].ToString());
                    }
                    model.ActionName = ds.Tables[0].Rows[n]["ActionName"].ToString();
                    if (ds.Tables[0].Rows[n]["ActionTime"].ToString() != "")
                    {
                        model.ActionTime = DateTime.Parse(ds.Tables[0].Rows[n]["ActionTime"].ToString());
                    }
                    model.Remark = ds.Tables[0].Rows[n]["Remark"].ToString();
                    modelList.Add(model);
                }
            }
            return(modelList);
        }
Example #2
0
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public void Update(NoName.NetShop.Model.UserActionLogModel model)
 {
     dal.Update(model);
 }
Example #3
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public void Add(NoName.NetShop.Model.UserActionLogModel model)
 {
     dal.Add(model);
 }