예제 #1
0
파일: Category.cs 프로젝트: njunet/Water125
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public void Update(Maticsoft.Model.Category model)
 {
     dal.Update(model);
 }
예제 #2
0
파일: Category.cs 프로젝트: Jyf524/RunZe
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public bool Update(Maticsoft.Model.Category model)
 {
     return(dal.Update(model));
 }
예제 #3
0
파일: Category.cs 프로젝트: njunet/Water125
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public void Add(Maticsoft.Model.Category model)
 {
     dal.Add(model);
 }
예제 #4
0
파일: Category.cs 프로젝트: Jyf524/RunZe
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public bool Add(Maticsoft.Model.Category model)
 {
     return(dal.Add(model));
 }