public bool Delete(int entityID) { Combine combine = _combineDAL.Get(a => a.CombineID == entityID); return(_combineDAL.Delete(combine) > 0); }
public void Delete(Combine entity) { _dal.Delete(entity); }