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