@Override public Integer countCountryCode(String filter) { return countryCodeDao.count(filter); }
@Override public Integer countCountryCode() { return countryCodeDao.count(); }
@Override public List<CfCountryCode> findCountryCodes(String filter, Integer offset, Integer limit) { return countryCodeDao.find(filter, offset, limit); }
@Override public List<CfCountryCode> findCountryCodes(Integer offset, Integer limit) { return countryCodeDao.find(offset, limit); }
@Override public CfCountryCode findCountryCodeByCode(String code) { return countryCodeDao.findByCode(code); }
@Override public CfCountryCode findCountryCodeById(Long id) { return countryCodeDao.findById(id); }