Package za.co.javajoe.domain

Examples of za.co.javajoe.domain.Account


        System.out.println("====== Generating Account List" );



        Account acc = new Account();
        acc.setAccountID("1");
        acc.setAccountNumber("6222-12345");
        accountList.add(acc);

        acc = new Account();
        acc.setAccountID("2");
        acc.setAccountNumber("6333-12346");
        accountList.add(acc);

        acc = new Account();
        acc.setAccountID("3");
        acc.setAccountNumber("6444-12347");
        accountList.add(acc);

        System.out.println("====== Account List Created" );

        return  accountList;
View Full Code Here

TOP

Related Classes of za.co.javajoe.domain.Account

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.