Exemplo n.º 1
0
 public Account account(String id) {
   return helper.account(id);
 }
Exemplo n.º 2
0
 public void remove(UUID id) {
   helper.removeAccount(id);
 }
Exemplo n.º 3
0
 public void add(Account account) {
   helper.addAccount(account);
 }
Exemplo n.º 4
0
 public void update(Account account) {
   helper.updateAccount(account);
 }
Exemplo n.º 5
0
 public Set<Account> accounts() {
   return helper.findAllAccounts();
 }