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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy