@Override
 @Transactional(propagation = Propagation.REQUIRED, readOnly = true)
 public List<CityDto> getCitiesByCountry(Long countryId) {
   List<City> cities = cityRepository.findCityByCountryId(countryId);
   return cityBuilder.buildCityDtoList(cities);
 }