public void Handle(DeleteCustomPage message) { var itemToDelete = _repository.Get(i => i.EntityId == message.Id); _repository.Delete(itemToDelete); _repository.Save(); //_repository.Delete(message.EntityId, -1); }
public CustomPage GetById(System.Guid entityId) { return(_customPageRepository.Get(cp => cp.EntityId == entityId)); }