Advertisement
Luca_G6

AuxTransferencia.java

Mar 27th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package tp1e10_Clases;
  2.  
  3. public class Transferencia {
  4.  
  5.     private CuentaBancaria C_Origen;
  6.     private CuentaBancaria C_Destino;
  7.    
  8.     public Transferencia(CuentaBancaria c_o, CuentaBancaria c_d) {
  9.         this.C_Origen = c_o;
  10.         this.C_Destino = c_d;
  11.     }
  12.    
  13.     public CuentaBancaria getCuentaOrigen() {return this.C_Origen;}
  14.    
  15.     public CuentaBancaria getCuentaDestino() {return this.C_Destino;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement