Guest User

Untitled

a guest
Dec 7th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public LinkedList<Account> accounts() {
  2. LinkedList<Account> accounts = new LinkedList<Account>();
  3. for (BigDecimal tariffAccountId : tariffAccountsList) {
  4. // subsAccountId from tariff table links to account_map table
  5. // attribute type
  6. accounts.add(account.get(tariffAccountId));
  7. }
  8. return accounts;
  9. }
Add Comment
Please, Sign In to add comment