internal static void RemoveAward()
        {
            Console.WriteLine("Введите индекс награды:");
            int index = Convert.ToInt32(Console.ReadLine());

            if (index < 0 && index >= usersLogic.GetAllAwards().Count())
            {
                Console.WriteLine("Неправильно указан индекс!");
            }
            else
            {
                if (!usersLogic.GetAllAwards().Any())
                {
                    Console.WriteLine("Список наград пуст!");
                }
                else
                {
                    usersLogic.RemoveAward(index);
                }
            }
        }