Esempio n. 1
0
        public bool transfere(double valor, Ex1 ex)
        {
            if (this._saldo > valor)
            {
                this.Saca(valor);
                ex.Deposita(valor);

                return(true);
            }
            return(false);
        }