org.openmrs.module.ipd.api.service.ScheduleService 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.Visit;
import org.openmrs.module.ipd.api.model.Schedule;
import org.openmrs.api.APIException;
import org.openmrs.api.OpenmrsService;
import org.springframework.stereotype.Service;
@Service
public interface ScheduleService extends OpenmrsService {
// @Authorized({ PrivilegeConstants.EDIT_IPD_SCHEDULES })
Schedule getSchedule(Integer scheduleId) throws APIException;
// @Authorized({ PrivilegeConstants.EDIT_IPD_SCHEDULES })
Schedule saveSchedule(Schedule schedule) throws APIException;
Schedule getScheduleByVisit(Visit visit);
}