@Override public Integer countAccountCode(String filter) { return accountCodeDao.count(filter); }
@Override public Integer countAccountCode() { return accountCodeDao.count(); }
@Override public List<CfAccountCode> findAccountCodes(String filter, Integer offset, Integer limit) { return accountCodeDao.find(filter, offset, limit); }
@Override public List<CfAccountCode> findAccountCodes(Integer offset, Integer limit) { return accountCodeDao.find(offset, limit); }
@Override public CfAccountCode findAccountCodeByCode(String code) { return accountCodeDao.findByCode(code); }
@Override public CfAccountCode findAccountCodeById(Long id) { return accountCodeDao.findById(id); }