|
|
|
@@ -21,7 +21,7 @@ public class Fall { |
|
|
|
private SimpleStringProperty vorstellDatum = new SimpleStringProperty(this, "vorstellDatum"); |
|
|
|
private SimpleStringProperty aufnahmeDatum = new SimpleStringProperty(this, "aufnahmeDatum"); |
|
|
|
private SimpleStringProperty entlassungsDatum = new SimpleStringProperty(this, "entlassungsDatum"); |
|
|
|
|
|
|
|
private SimpleIntegerProperty fallID = new SimpleIntegerProperty(this, "fallid"); |
|
|
|
|
|
|
|
|
|
|
|
public Patient getPatient() { |
|
|
|
@@ -67,6 +67,7 @@ public class Fall { |
|
|
|
public boolean getSelbsteinweisung() { |
|
|
|
return selbsteinweisung.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleBooleanProperty selbsteinweisungProperty() { |
|
|
|
return selbsteinweisung; |
|
|
|
} |
|
|
|
@@ -86,6 +87,7 @@ public class Fall { |
|
|
|
public void setVersichertenNummer(String versichertenNummer) { |
|
|
|
this.versichertenNummer.set(versichertenNummer); |
|
|
|
} |
|
|
|
|
|
|
|
public boolean getStorniert() { |
|
|
|
return storniert.get(); |
|
|
|
} |
|
|
|
@@ -98,6 +100,21 @@ public class Fall { |
|
|
|
this.storniert.set(storniert); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleStringProperty versichertenNummerProperty() { |
|
|
|
return versichertenNummer; |
|
|
|
} |
|
|
|
|
|
|
|
public int getFallID() { |
|
|
|
return fallID.get(); |
|
|
|
} |
|
|
|
|
|
|
|
public SimpleIntegerProperty fallIDProperty() { |
|
|
|
return fallID; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFallID(int fallID) { |
|
|
|
this.fallID.set(fallID); |
|
|
|
} |
|
|
|
|
|
|
|
public String getVorstellDatum() { |
|
|
|
return vorstellDatum.get(); |
|
|
|
|