/** Delete accountEntryGroup. */ public void deleteEntity(AccountEntryGroup accountEntryGroup) { accountEntryGroupDAO.delete(accountEntryGroup); }
/** Update accountEntryGroup. */ public void updateEntity(AccountEntryGroup accountEntryGroup) { accountEntryGroupDAO.update(accountEntryGroup); }
/** * Get accountEntryGroup by primary key. * * @return accountEntryGroup selected by id. */ public AccountEntryGroup getEntityById(int id) { return accountEntryGroupDAO.getById(id); }
/** Insert accountEntryGroup. */ public void insertEntity(AccountEntryGroup accountEntryGroup) { accountEntryGroupDAO.insert(accountEntryGroup); }
/** * List accountEntryGroups. * * @param search search filter to apply * @param sort sorting criteria * @return the list of all accountEntryGroups sorted by requested criterion */ public List<AccountEntryGroup> getAllEntities(AccountEntryGroupSearch search, SortCriteria sort) { return accountEntryGroupDAO.search(search, sort); }