public bool Delete(int entityID)
        {
            Combine combine = _combineDAL.Get(a => a.CombineID == entityID);

            return(_combineDAL.Delete(combine) > 0);
        }
예제 #2
0
 public void Delete(Combine entity)
 {
     _dal.Delete(entity);
 }