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

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

There is a newer version: 1.1.1
Show newest version
package org.openmrs.module.ipd.api.dao;

import org.openmrs.api.db.DAOException;
import org.openmrs.module.ipd.api.model.Reference;
import org.springframework.stereotype.Repository;

import java.util.Optional;


public interface ReferenceDAO {

	Optional getReferenceByTypeAndTargetUUID(String type, String targetUUID) throws DAOException;

	Reference saveReference(Reference reference) throws DAOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy