private async Task AfterMenuSelection(IDialogContext context, IAwaitable <string> result)
        {
            var    optionSelected = await result;
            string selectedSport  = optionSelected.Split(' ')[0];

            try
            {
                var tournaments = await TournamaticService.GetTournamentsBySport(_Sports[selectedSport]);

                if (tournaments.Count > 0)
                {
                    CardUtil.ShowHeroCard((IMessageActivity)context.Activity, tournaments);
                }
                else
                {
                    await context.PostAsync($"I couldn't find any tournaments :0");
                }
            }
            catch (Exception e)
            {
                Debug.WriteLine($"Error when filtering by sport: {e}");
            }
            context.Done <object>(null);
        }