public ThreePlusThreeAdder(TwoPlusTwoAdded domainEvent)
 {
     _domainEvent = domainEvent;
 }
 public int Handle(TwoPlusTwoAdded @event)
 {
     return(3 + 3);
 }