private boolean saveReservationInDB() {
if (guest != null) {
try {
//Adresse Updaten
ILand land = LandDao.getInstance().getById(this.country);
this.address.setLand(land);
List<IAdresse> adrs = new Vector<IAdresse>(this.guest.getAdressen());
IAdresse a1 = adrs.get(0);
a1 = this.address;