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

org.openmrs.module.ipd.api.dao.WardDAO Maven / Gradle / Ivy

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy