this.geoAssociationDao = geoAssociationDao;
}
public List<GeographicBoundary> list(GeoType type,Boolean active) {
ListPage<GeographicBoundary> page = new ListPage<GeographicBoundary>( Integer.MAX_VALUE );
GeographicBoundary geo = new GeographicBoundary( );
geo.setType(type);
geo.setActive( active );
page = super.dao.list(page, geo);
return page.getList();
}