protected virtual void Handle(HandlingEventCreated evnt)
 {
     _entityManager.BuildAndSave <HandlingEventEntity>(evnt);
 }
 private void Handle(HandlingEventCreated evnt)
 {
     _connection.Insert(evnt, "EventSourcing_Sample_HandlingEvent", _transaction);
 }
 protected virtual void Handle(HandlingEventCreated evnt)
 {
     _entityManager.BuildAndSave<HandlingEventEntity>(evnt);
 }