Created
December 29, 2017 12:25
-
-
Save r4hulp/a1ece3a10b9d6099ac34dd9ea7eb50bd to your computer and use it in GitHub Desktop.
Injecting parameters in Dialog
This file contains 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 characters
Dictionary<string, object> dict = new Dictionary<string, object>(); | |
dict.Add("ticket_id", "this is string"); | |
dict.Add("order", this.order); | |
context.Call(this.dialogFactory.Create<OrderSummaryDialog, Dictionary<string, object>>(dict), this.AfterOrderSummaryDialog); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment