/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package Capitulo_5.Cajero;

/**
 *
 * @author felix
 */
public class prueba {
    
    static public void main(String args[]) {
        Banco miBanco = new Banco();
        
        miBanco.leeClientes();
        
        System.out.println(miBanco.buscaCliente(1, 1234));
    }
    
}
