Example #1
0
 public bool Delete(int id)
 {
     return(tiDal.Delete(id) > 0);
 }
Example #2
0
 public bool Remove(int index)
 {
     return(dal.Delete(index) > 0);
 }
Example #3
0
 public bool Remove(int id)
 {
     return(_tiDal.Delete(id) > 0);
 }
Example #4
0
 public bool Delete(string id)
 {
     return(dal.Delete(id) > 0);
 }
Example #5
0
 /// <summary>
 /// 删除
 /// </summary>
 /// <param name="tableNo">要删除的对象的编号</param>
 /// <returns></returns>
 public bool Delete(string tableNo)
 {
     return(tableInfoDal.Delete(tableNo));
 }
Example #6
0
 public bool Remove(int TId)
 {
     return(tiDal.Delete(TId) > 0);
 }