Exemplo n.º 1
0
 public bool Update(TableInfo ti)
 {
     return(tiDal.Update(ti) > 0);
 }
Exemplo n.º 2
0
 public bool Update(TableInfo model)
 {
     return(dal.Update(model) > 0);
 }
Exemplo n.º 3
0
 public bool Edit(TableInfo ti)
 {
     return(dal.Update(ti) > 0);
 }
Exemplo n.º 4
0
 /// <summary>
 /// 更新
 /// </summary>
 /// <param name="entity">要更新的数据对象</param>
 /// <returns></returns>
 public bool Update(TableInfo entity)
 {
     return(tableInfoDal.Update(entity));
 }