This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Blockbuster; | |
public class App { | |
public static void main(String[] args){ | |
Cliente ariel = new Cliente("Ariel Camacho"); | |
Catalogo catalogo = new Catalogo(); | |
Serie houseOfCards = catalogo.getSeriePorNombre("House Of Cards"); | |
System.out.println("Antes de rentar: "+houseOfCards.toString()); |