public void SetContext(Guid correlationId, CQRSIdentity identity)
 {
     SetCorrelationId(correlationId);
     SetIdentity(identity);
 }
 public void SetIdentity(CQRSIdentity identity)
 {
     this.Identity = identity;
 }
 public DistributedMessage(Guid correlationId, CQRSIdentity identity)
 {
     this.CorrelationId = correlationId;
     this.Identity      = identity;
 }