All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openmrs.module.ipd.api.model.AdmittedPatient Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
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; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy