Interface CityDao
-
- All Known Implementing Classes:
DefaultCityDao
public interface CityDao
Dao responsible forCityModel
access.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<CityModel>
findCityByRegionAndIsocode(RegionModel region, java.lang.String isocode)
Find all cities by region and its code
-
-
-
Method Detail
-
findCityByRegionAndIsocode
java.util.List<CityModel> findCityByRegionAndIsocode(RegionModel region, java.lang.String isocode)
Find all cities by region and its code- Parameters:
region
- the region that the city belongs toisocode
- city code- Returns:
- cities
-
-