public async Task AddWishList(IDialogContext context, LuisResult result)
        {
            FilterIntentScore(context, result);

            WishListDialog.AddToWishList(context, result.Query);
            var reply = Interactions.getAddWishList();
            await Helpers.BotTranslator.PostTranslated(context, reply, context.MakeMessage().Locale);

            context.Done(new CODE(DIALOG_CODE.DONE));
        }