예제 #1
0
 @Override
 public List<Country> findCountries() {
   return countryService.findCountries();
 }
예제 #2
0
 @Override
 public Country findCountryByAbbreviation(String countryCode) {
   return countryService.findCountryByAbbreviation(countryCode);
 }