public bool transfere(double valor, Ex1 ex) { if (this._saldo > valor) { this.Saca(valor); ex.Deposita(valor); return(true); } return(false); }