public void Delete(RelationViewModel model) { var item = _repository.FindById(model.Id); if (item != null) { _repository.Delete(item); } }