Skip to content

Instantly share code, notes, and snippets.

@plagelao
Created November 23, 2010 20:12
Show Gist options
  • Save plagelao/712436 to your computer and use it in GitHub Desktop.
Save plagelao/712436 to your computer and use it in GitHub Desktop.
Banco con credenciales
public class Banco {
private final OperacionesBancarias operacionesBancarias;
public Banco(OperacionesBancarias operacionesBancarias) {
this.operacionesBancarias = operacionesBancarias;
}
public Cuenta obtenerCuenta(Credenciales credenciales) {
Token token = operacionesBancarias.autenticar(credenciales);
return Cuenta.crear(token);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment