Browse Source

HauptdiagnoseId im Fall

testBranch
Johannes Oehm 10 years ago
parent
commit
f0336236ae
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      src/main/java/de/uniluebeck/mi/projmi6/model/Fall.java

+ 5
- 0
src/main/java/de/uniluebeck/mi/projmi6/model/Fall.java View File

@@ -14,6 +14,9 @@ public class Fall extends Version {
private Patient patient;
private Kasse kasse;
private Diagnose hauptDiagnose;

private SimpleIntegerProperty hauptdiagnoseId = new SimpleIntegerProperty(this, "hauptdiagnoseId");

private SimpleStringProperty einweisenderArzt = new SimpleStringProperty(this, "einweiser");
private FallArt fallArt;
private SimpleBooleanProperty selbsteinweisung = new SimpleBooleanProperty(this, "selbsteinweisung");
@@ -28,6 +31,8 @@ public class Fall extends Version {
return vorstellDatum.get();
}



public void setVorstellDatum(LocalDateTime vorstellDatum) {
this.vorstellDatum.set(vorstellDatum);
}


Loading…
Cancel
Save