Ejemplo n.º 1
0
 public void Transfere(double valor, Conta destino)
 {
     this.Saca(valor);
     destino.Deposita(valor);
 }