org.openmrs.module.ipd.api.service.WardService 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.service;
import org.openmrs.module.ipd.api.model.AdmittedPatient;
import org.openmrs.module.ipd.api.model.WardPatientsSummary;
import java.util.List;
public interface WardService {
WardPatientsSummary getIPDWardPatientSummary(String wardUuid, String providerUuid);
List getWardPatientsByUuid(String wardUuid, String sortBy);
List searchWardPatients(String wardUuid, List searchKeys, String searchValue, String sortBy);
List getPatientsByWardAndProvider(String wardUuid, String providerUuid, String sortBy);
List getAdmittedPatients();
}