org.openmrs.module.ipd.api.dao.WardDAO 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.dao;
import org.openmrs.Location;
import org.openmrs.Provider;
import org.openmrs.module.ipd.api.model.AdmittedPatient;
import org.openmrs.module.ipd.api.model.WardPatientsSummary;
import java.util.Date;
import java.util.List;
public interface WardDAO {
List searchAdmittedPatients(Location location, List searchKeys, String searchValue, String sortBy);
List getAdmittedPatients(Location location, Provider provider, Date currentDateTime, String sortBy);
WardPatientsSummary getWardPatientSummary(Location location, Provider provider, Date currentDateTime);
}