|
|
|
@@ -12,7 +12,6 @@ import java.time.LocalDateTime; |
|
|
|
public class StationsHistorie extends Version { |
|
|
|
private SimpleObjectProperty<LocalDateTime> aufnahmeDatum = new SimpleObjectProperty<>(this, "aufnahmeDatum"); |
|
|
|
private SimpleObjectProperty<LocalDateTime> entlassungsDatum = new SimpleObjectProperty<>(this, "entlassungsDatum"); |
|
|
|
private Fall fall; |
|
|
|
private int fallID; // platte Objektstruktur! |
|
|
|
private Station station; |
|
|
|
private SimpleStringProperty stationKey = new SimpleStringProperty(this, "stationskey"); // platte Objektstruktur! |
|
|
|
@@ -42,14 +41,6 @@ public class StationsHistorie extends Version { |
|
|
|
return entlassungsDatum; |
|
|
|
} |
|
|
|
|
|
|
|
public Fall getFall() { |
|
|
|
return fall; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFall(Fall fall) { |
|
|
|
this.fall = fall; |
|
|
|
} |
|
|
|
|
|
|
|
public Station getStation() { |
|
|
|
return station; |
|
|
|
} |
|
|
|
|