コード例 #1
0
 public bool Delete(int id)
 {
     return(tiDal.Delete(id) > 0);
 }
コード例 #2
0
 public bool Remove(int index)
 {
     return(dal.Delete(index) > 0);
 }
コード例 #3
0
ファイル: TableInfoBll.cs プロジェクト: Susilen/Cater
 public bool Remove(int id)
 {
     return(_tiDal.Delete(id) > 0);
 }
コード例 #4
0
 public bool Delete(string id)
 {
     return(dal.Delete(id) > 0);
 }
コード例 #5
0
ファイル: TableInfoBLL.cs プロジェクト: gqksrmz/StudyPractice
 /// <summary>
 /// 删除
 /// </summary>
 /// <param name="tableNo">要删除的对象的编号</param>
 /// <returns></returns>
 public bool Delete(string tableNo)
 {
     return(tableInfoDal.Delete(tableNo));
 }
コード例 #6
0
ファイル: TableInfoBll.cs プロジェクト: yang123vc/ItcastCater
 public bool Remove(int TId)
 {
     return(tiDal.Delete(TId) > 0);
 }