void SetCorrelationIdOnReplyFromRequest(MessagePayload toInput) { if (!lookup.HasCurrentCorrelationId()) return; toInput.SetCorrelationId(lookup.GetCurrentCorrelationId()); }
void SetNewCorrelationId(MessagePayload toInput) { toInput.SetCorrelationId(Guid.NewGuid()); }