private void BuyFromClothes()
        {
            var newClothes = Clothes.GetClothes();

            clothesManager.PrintClothesList();
            int index = InputController.IndexController(newClothes.Count);

            Console.WriteLine("You've chosen:");
            Console.WriteLine(newClothes[index].GetInformation());
            Console.WriteLine("\nAdd it? press 1 not? press 2");
            var input = Console.ReadKey(true).Key;

            switch (input)
            {
            case ConsoleKey.NumPad1:
            case ConsoleKey.D1:
                AddClothesToShopCart(newClothes[index]);

                break;

            case ConsoleKey.NumPad2:
            case ConsoleKey.D2:
                Console.Clear();
                BuyFromClothes();
                break;
            }
        }