Example #1
0
 public bool Remove(int Did)
 {
     return(diDal.Delete(Did) > 0);
 }
Example #2
0
 public bool Remove(int index)
 {
     return(dal.Delete(index) > 0);
 }
Example #3
0
 public bool Delete(string id)
 {
     return(dal.Delete(id) > 0);
 }
Example #4
0
 public bool Delete(DishInfo di)
 {
     return(didal.Delete(di) > 0);
 }
Example #5
0
 public bool Delete(int id)
 {
     return(dishInfoDal.Delete(id) > 0);
 }
Example #6
0
 public bool Remove(int id)
 {
     return(_diDal.Delete(id) > 0);
 }