Exemplo n.º 1
0
        private async Task ResumeAfterLuisDialog(IDialogContext context, IAwaitable <object> result)
        {
            string message = $"Now, i'm using LUIS ";
            string _result = await FinanceService.GetEntityFromLUIS("one person in this hotel");

            await context.PostAsync(message);

            await context.PostAsync(_result);

            context.Wait(this.MessageReceivedAsync);
        }