Example #1
0
 public bool Remove(int id)
 {
     return(dtiDal.Delete(id) > 0);
 }
Example #2
0
 public bool Delete(DishTypeInfo dti)
 {
     return(dtidal.Delete(dti) > 0);
 }
Example #3
0
 public bool Delete(int id)
 {
     return(DishTypeInfoDal.Delete(id) > 0);
 }
Example #4
0
 public bool Delete(int id)
 {
     return(dal.Delete(id) > 0);
 }
Example #5
0
 public bool Remove(int index)
 {
     return(dal.Delete(index) > 0);
 }
Example #6
0
 public bool Delete(string id)
 {
     return(dal.Delete(id) > 0);
 }