RoomTypes rt = roommanagement.getRoomTypesById(roomType);
Appointment app = appointmentLogic
.getAppointMentById(appointmentId);
Rooms room = app.getRoom();
if (room != null) {
room.setComment(appointmentDescription);
room.setName(appointmentName);
room.setRoomtype(rt);
roommanagement.updateRoomObject(room);
}
Users user = userManagement.getUserById(users_id);