Package bank.persistence

Examples of bank.persistence.AccountInfo


      if (account.getNr() == nr) {
        return account;
      }
    }

    AccountInfo info = db.load(nr);

    IKlant client = new Klant(info.name, info.city);
    clients.add(client);

    account = new Rekening(info.accountnr, client, info.balance);
View Full Code Here

TOP

Related Classes of bank.persistence.AccountInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.