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

org.openmrs.module.ipd.api.service.WardService Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy