public void insertCountryWithCascade(EntityManager emForRecursiveDao, Country country) {
insertCountry(emForRecursiveDao, country);
if (!country.getAddressCountryViaCountryId().isEmpty()) {
AddressExtendedJPAImpl addressextendedjpaimpl = new AddressExtendedJPAImpl (emForRecursiveDao);
for (Address _addressCountryViaCountryId : country.getAddressCountryViaCountryId()) {
addressextendedjpaimpl.insertAddressWithCascade(emForRecursiveDao, _addressCountryViaCountryId);
}
}
}
/**