public Account account(String id) {
   return helper.account(id);
 }
 public void remove(UUID id) {
   helper.removeAccount(id);
 }
 public void add(Account account) {
   helper.addAccount(account);
 }
 public void update(Account account) {
   helper.updateAccount(account);
 }
 public Set<Account> accounts() {
   return helper.findAllAccounts();
 }