static void BuyCar(IPlayerService playerService, IStoreService storeService)
        {
            Player player = playerService.ChoosePlayerToPlayWith();

            playerService.BuyCar(player, storeService);
        }