/// <summary> /// 获得数据列表 /// </summary> public List <Maticsoft.Model.ImageList> DataTableToList(DataTable dt) { List <Maticsoft.Model.ImageList> modelList = new List <Maticsoft.Model.ImageList>(); int rowsCount = dt.Rows.Count; if (rowsCount > 0) { Maticsoft.Model.ImageList model; for (int n = 0; n < rowsCount; n++) { model = new Maticsoft.Model.ImageList(); if (dt.Rows[n]["ID"] != null && dt.Rows[n]["ID"].ToString() != "") { model.ID = decimal.Parse(dt.Rows[n]["ID"].ToString()); } if (dt.Rows[n]["Name"] != null && dt.Rows[n]["Name"].ToString() != "") { model.Name = dt.Rows[n]["Name"].ToString(); } if (dt.Rows[n]["Remarks"] != null && dt.Rows[n]["Remarks"].ToString() != "") { model.Remarks = dt.Rows[n]["Remarks"].ToString(); } if (dt.Rows[n]["Im"] != null && dt.Rows[n]["Im"].ToString() != "") { model.Im = (byte[])dt.Rows[n]["Im"]; } modelList.Add(model); } } return(modelList); }
/// <summary> /// 更新一条数据 /// </summary> public bool Update(Maticsoft.Model.ImageList model) { return(dal.Update(model)); }
/// <summary> /// 增加一条数据 /// </summary> public decimal Add(Maticsoft.Model.ImageList model) { return(dal.Add(model)); }