@Override public boolean hasSodoCodeChildren(CfSodoCode parent) { return sodoCodeDao.hasChildren(parent); }
@Override public Integer countSodoCode(CfSodoCode parent) { return sodoCodeDao.count(parent); }
@Override public Integer countSodoCode(String filter) { return sodoCodeDao.count(filter); }
@Override public List<CfSodoCode> findSodoCodes(CfSodoCode parent, Integer offset, Integer limit) { return sodoCodeDao.find(parent, offset, limit); }
@Override public Integer countSodoCode() { return sodoCodeDao.count(); }
@Override public List<CfSodoCode> findSodoCodes( Integer level, String filter, Integer offset, Integer limit) { return sodoCodeDao.find(level, filter, offset, limit); }
@Override public List<CfSodoCode> findSodoCodes(CfSodoCode parent) { return sodoCodeDao.findByParent(parent); }
@Override public List<CfSodoCode> findSodoCodeRoots() { return sodoCodeDao.findRoots(); }
@Override public CfSodoCode findSodoCodeByCode(String code) { return sodoCodeDao.findByCode(code); }
@Override public CfSodoCode findSodoCodeById(Long id) { return sodoCodeDao.findById(id); }