diff --git a/src/main/java/de/uniluebeck/mi/projmi6/model/Diagnose.java b/src/main/java/de/uniluebeck/mi/projmi6/model/Diagnose.java new file mode 100644 index 0000000..a56bfc4 --- /dev/null +++ b/src/main/java/de/uniluebeck/mi/projmi6/model/Diagnose.java @@ -0,0 +1,7 @@ +package de.uniluebeck.mi.projmi6.model; + +/** + * Created by 627933 on 12.11.15. + */ +public class Diagnose { +} diff --git a/src/main/java/de/uniluebeck/mi/projmi6/model/Fall.java b/src/main/java/de/uniluebeck/mi/projmi6/model/Fall.java new file mode 100644 index 0000000..268f8c3 --- /dev/null +++ b/src/main/java/de/uniluebeck/mi/projmi6/model/Fall.java @@ -0,0 +1,137 @@ +package de.uniluebeck.mi.projmi6.model; + +import javafx.beans.property.SimpleBooleanProperty; +import javafx.beans.property.SimpleIntegerProperty; +import javafx.beans.property.SimpleStringProperty; + +import java.text.SimpleDateFormat; + +/** + * Created by 627933 on 12.11.15. + */ +public class Fall { + private Patient patient; + private Kasse kasse; + private Diagnose hauptDiagnose; + private Mitarbeiter einweisenderArzt; + private Enum fallArt; + private SimpleBooleanProperty selbsteinweisung = new SimpleBooleanProperty(this, "selbsteinweisung"); + private SimpleStringProperty versichertenNummer = new SimpleStringProperty(this, "versichertenNummer"); + private SimpleBooleanProperty storniert = new SimpleBooleanProperty(this, "storniert"); + private SimpleStringProperty vorstellDatum = new SimpleStringProperty(this, "vorstellDatum"); + private SimpleStringProperty aufnahmeDatum = new SimpleStringProperty(this, "aufnahmeDatum"); + private SimpleStringProperty entlassungsDatum = new SimpleStringProperty(this, "entlassungsDatum"); + + + + public Patient getPatient() { + return patient; + } + + public void setPatient(Patient patient) { + this.patient = patient; + } + + public Kasse getKasse() { + return kasse; + } + + public void setKasse(Kasse kasse) { + this.kasse = kasse; + } + + public Diagnose getHauptDiagnose() { + return hauptDiagnose; + } + + public void setHauptDiagnose(Diagnose hauptDiagnose) { + this.hauptDiagnose = hauptDiagnose; + } + + public Mitarbeiter getEinweisenderArzt() { + return einweisenderArzt; + } + + public void setEinweisenderArzt(Mitarbeiter einweisenderArzt) { + this.einweisenderArzt = einweisenderArzt; + } + + public Enum getFallArt() { + return fallArt; + } + + public void setFallArt(Enum fallArt) { + this.fallArt = fallArt; + } + + public boolean getSelbsteinweisung() { + return selbsteinweisung.get(); + } + public SimpleBooleanProperty selbsteinweisungProperty() { + return selbsteinweisung; + } + + public void setSelbsteinweisung(boolean selbsteinweisung) { + this.selbsteinweisung.set(selbsteinweisung); + } + + public String getVersichertenNummer() { + return versichertenNummer.get(); + } + + public SimpleStringProperty versichertenNummerProperts() { + return versichertenNummer; + } + + public void setVersichertenNummer(String versichertenNummer) { + this.versichertenNummer.set(versichertenNummer); + } + public boolean getStorniert() { + return storniert.get(); + } + + public SimpleBooleanProperty storniertProperty() { + return storniert; + } + + public void setStorniert(boolean storniert) { + this.storniert.set(storniert); + } + + + public String getVorstellDatum() { + return vorstellDatum.get(); + } + + public SimpleStringProperty vorstellDatumProperty() { + return vorstellDatum; + } + + public void setVorstellDatum(String vorstellDatum) { + this.vorstellDatum.set(vorstellDatum); + } + + public String getAufnahmeDatum() { + return aufnahmeDatum.get(); + } + + public SimpleStringProperty aufnahmeDatumProperty() { + return aufnahmeDatum; + } + + public void setAufnahmeDatum(String aufnahmeDatum) { + this.aufnahmeDatum.set(aufnahmeDatum); + } + + public String getEntlassungsDatum() { + return entlassungsDatum.get(); + } + + public SimpleStringProperty entlassungsDatumProperty() { + return entlassungsDatum; + } + + public void setEntlassungsDatum(String entlassungsDatum) { + this.entlassungsDatum.set(entlassungsDatum); + } +} diff --git a/src/main/java/de/uniluebeck/mi/projmi6/model/FallArt.java b/src/main/java/de/uniluebeck/mi/projmi6/model/FallArt.java new file mode 100644 index 0000000..aed17a3 --- /dev/null +++ b/src/main/java/de/uniluebeck/mi/projmi6/model/FallArt.java @@ -0,0 +1,7 @@ +package de.uniluebeck.mi.projmi6.model; + +/** + * Created by 627933 on 12.11.15. + */ +public enum FallArt { +} diff --git a/src/main/java/de/uniluebeck/mi/projmi6/model/Kasse.java b/src/main/java/de/uniluebeck/mi/projmi6/model/Kasse.java new file mode 100644 index 0000000..b80b27c --- /dev/null +++ b/src/main/java/de/uniluebeck/mi/projmi6/model/Kasse.java @@ -0,0 +1,7 @@ +package de.uniluebeck.mi.projmi6.model; + +/** + * Created by 627933 on 12.11.15. + */ +public class Kasse { +} diff --git a/src/main/java/de/uniluebeck/mi/projmi6/model/Mitarbeiter.java b/src/main/java/de/uniluebeck/mi/projmi6/model/Mitarbeiter.java new file mode 100644 index 0000000..5c5b786 --- /dev/null +++ b/src/main/java/de/uniluebeck/mi/projmi6/model/Mitarbeiter.java @@ -0,0 +1,7 @@ +package de.uniluebeck.mi.projmi6.model; + +/** + * Created by 627933 on 12.11.15. + */ +public class Mitarbeiter { +}