Example #1
0
        public CuentaCorriente GetCuentaCorriente(long id)
        {
            CuentaCorriente desiredBankAccount = bankAccounts.Find(bankAccount => bankAccount.AccountNumber == id);

            return(desiredBankAccount);
        }