Guest User

Untitled

a guest
Jul 15th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. public class Cajero {
  2.  
  3. public void muestraLaPantallaPrincipal() {
  4. Banco banco = new Banco(new OperacionesBancariasBancoManolito(),
  5. this);
  6. banco.obtenerCuenta(obtenCredenciales());
  7. }
  8.  
  9. public void cuentaObtenida(Cuenta cuenta) {
  10. muestraInformacionDeLacuenta(cuenta);
  11. }
  12.  
  13. public void cuentaAnulada() {
  14. muestraUnErrorPorCuentaAnulada();
  15. }
  16.  
  17. public void credencialesIncorrectas() {
  18. pideUnasNuevasCredenciales();
  19. }
  20.  
  21. public void bancoInaccesible() {
  22. pasaAModoFueraDeServico();
  23. }
  24. }
Add Comment
Please, Sign In to add comment