private void FindShowByTitle()
        {
findByTitle:
            Show content = new Show();

            Console.Clear();
            Console.WriteLine("Enter the title of the content you would like to find");
            string title = Console.ReadLine();

            content = _streamingRepo.GetShowByTitle(title);
            Console.Clear();

            if (content == null)
            {
                string tryAgain;
                Console.WriteLine($"Could not find {title}.\nDo you want to try another search? \n1)Yes \n2)No");
                tryAgain = Console.ReadLine().ToLower();
                switch (tryAgain)
                {
                case "1":
                    goto findByTitle;

                case "yes":
                    goto findByTitle;

                case "2":
                    break;

                case "no":
                    break;
                }
            }
            else
            {
                DisplaySimple(content);
                Console.WriteLine("Press any key to continue");
                Console.ReadKey();
                Console.Clear();
            }
        }