public bool Remove(int Did) { return(diDal.Delete(Did) > 0); }
public bool Remove(int index) { return(dal.Delete(index) > 0); }
public bool Delete(string id) { return(dal.Delete(id) > 0); }
public bool Delete(DishInfo di) { return(didal.Delete(di) > 0); }
public bool Delete(int id) { return(dishInfoDal.Delete(id) > 0); }
public bool Remove(int id) { return(_diDal.Delete(id) > 0); }