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