org.openmrs.module.ipd.api.model.AdmittedPatient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bahmni-ipd-api Show documentation
Show all versions of bahmni-ipd-api Show documentation
Bahmni IPD API contains all backend APIs for IPD
package org.openmrs.module.ipd.api.model;
import org.openmrs.module.bedmanagement.entity.BedPatientAssignment;
public class AdmittedPatient {
private BedPatientAssignment bedPatientAssignment;
private Long newTreatments;
private CareTeam careTeam;
public AdmittedPatient(BedPatientAssignment bedPatientAssignment, Long newTreatments, CareTeam careTeam){
this.bedPatientAssignment=bedPatientAssignment;
this.newTreatments=newTreatments;
this.careTeam=careTeam;
}
public BedPatientAssignment getBedPatientAssignment() {
return bedPatientAssignment;
}
public Long getNewTreatments() {
return newTreatments;
}
public CareTeam getCareTeam() { return careTeam; }
}