public void Tranfere(double valor, OperacoesContas destino)
 {
     this.Saca(valor);
     destino.Deposita(valor);
 }