Ejemplo n.º 1
0
 @Override
 public List<Country> findCountries() {
   return countryService.findCountries();
 }
Ejemplo n.º 2
0
 @Override
 public Country findCountryByAbbreviation(String countryCode) {
   return countryService.findCountryByAbbreviation(countryCode);
 }