public void insertPresentationPlaceWithCascade(EntityManager emForRecursiveDao, PresentationPlace presentationPlace) {
insertPresentationPlace(emForRecursiveDao, presentationPlace);
if (!presentationPlace.getPresentationPresentationPlaceViaPresentationPlaceId().isEmpty()) {
PresentationExtendedJPAImpl presentationextendedjpaimpl = new PresentationExtendedJPAImpl (emForRecursiveDao);
for (Presentation _presentationPresentationPlaceViaPresentationPlaceId : presentationPlace.getPresentationPresentationPlaceViaPresentationPlaceId()) {
presentationextendedjpaimpl.insertPresentationWithCascade(emForRecursiveDao, _presentationPresentationPlaceViaPresentationPlaceId);
}
}
}
/**