public static void None(LuisResult result, object context)
        {
            UsingIntentRouter usingIntentRouter = (UsingIntentRouter)context;

            usingIntentRouter.queryTextBlock.Text     = result.OriginalQuery;
            usingIntentRouter.topIntentTextBlock.Text = "None";
        }
        public void BookACab(LuisResult result, object context)
        {
            UsingIntentRouter usingIntentRouter = (UsingIntentRouter)context;

            usingIntentRouter.queryTextBlock.Text     = result.OriginalQuery;
            usingIntentRouter.topIntentTextBlock.Text = "Book a cab";
        }