public @ResponseBody
List<GareDTO> createGare(@RequestParam("gareId") int gareId, @RequestParam("gareName") String gareName,
@RequestParam("gareGottId") int gareGottId) {
Gare gare = new Gare();
gare.setGareName(gareName);
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();