public bool Del(Guid id) { return(_countyDal.Delete(id)); }
public bool DeleteByID(int entityID) { County deleted = GetByID(entityID); return(_countyDal.Delete(deleted) > 0); }