org.openmrs.module.ipd.api.dao.CareTeamDAO 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.Visit;
import org.openmrs.api.db.DAOException;
import org.openmrs.module.ipd.api.model.CareTeam;
import org.openmrs.module.ipd.api.model.Schedule;
public interface CareTeamDAO {
CareTeam saveCareTeam(CareTeam careTeam) throws DAOException;
CareTeam getCareTeamByVisit(Visit visit) throws DAOException;
}