Gott gott = healthPostService.findGottById(gareGottId);
healthPostService.addGareToGott(gare, gott);
List<Gare> gares = healthPostService.getAllGaresForGott(gareGottId);
List<GareDTO> gareDTOs = new ArrayList<GareDTO>();
for (Gare g : gares) {
GareDTO gDTO = new GareDTO();
gDTO.setGareId(g.getGareId());
gDTO.setGareName(g.getGareName());
gDTO.setGareGottId(gareGottId);
gareDTOs.add(gDTO);
}
return gareDTOs;
}