public void Process(SimpleEvent @event) { ProcessCalled = true; EventPassed = @event; }
void On(SimpleEvent @event) { SimpleEventHandled++; }
void On(SimpleEvent simpleEvent) { EventApplied = true; Value = simpleEvent.Id.ToString(); }