Example #1
0
 @Override
 public Integer countAccountCode(String filter) {
   return accountCodeDao.count(filter);
 }
Example #2
0
 @Override
 public Integer countAccountCode() {
   return accountCodeDao.count();
 }
Example #3
0
 @Override
 public List<CfAccountCode> findAccountCodes(String filter, Integer offset, Integer limit) {
   return accountCodeDao.find(filter, offset, limit);
 }
Example #4
0
 @Override
 public List<CfAccountCode> findAccountCodes(Integer offset, Integer limit) {
   return accountCodeDao.find(offset, limit);
 }
Example #5
0
 @Override
 public CfAccountCode findAccountCodeByCode(String code) {
   return accountCodeDao.findByCode(code);
 }
Example #6
0
 @Override
 public CfAccountCode findAccountCodeById(Long id) {
   return accountCodeDao.findById(id);
 }