Пример #1
0
        private void AddNewMedia(string libselect)
        {
            Console.Clear();

            AddTitle.LibrarySelect(groupList, libselect);

            ViewLibraries(libselect);
        }
Пример #2
0
        private void NotFound(List <Media> groupList)
        {
            Console.Clear();
            Console.WriteLine("Title Not Found\nWould you like to add it? (y/n)");

            input = Console.ReadKey();

            if (input.Key == ConsoleKey.Y)
            {
                AddTitle.LibrarySelect(groupList);
            }

            else if (input.Key == ConsoleKey.N)
            {
            }

            else
            {
                NotFound(groupList);
            }
        }