Created
December 20, 2017 06:26
-
-
Save TanmayDharmaraj/f5e3b4ccf790522ebcfb23efa5f274c8 to your computer and use it in GitHub Desktop.
Revisions
-
TanmayDharmaraj created this gist
Dec 20, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ public class GlobalStore : IGlobalStore { private string CorrelationId { get; set; } private string RequestId { get; set; } public GlobalStore() { } public GlobalStore(CorrelationContext correlation_context) { if (correlation_context != null) { CorrelationId = correlation_context.CorrelationId; RequestId = correlation_context.RequestId; } } public string GetCorrelationId() { return CorrelationId; } public string GetRequestId() { return RequestId; } }