public InpatientEpisodeForTransfersVo saveTransfer(InpatientEpisodeForTransfersVo voTransfer) throws DomainInterfaceException, StaleObjectException
{
if(voTransfer == null)
throw new CodingRuntimeException("Cannot save null InpatientEpisodeForTransfersVo");
if (!voTransfer.isValidated())
throw new CodingRuntimeException("Transfer Record has not been validated");
DomainFactory factory = getDomainFactory();
InpatientEpisode doTrans = InpatientEpisodeForTransfersVoAssembler.extractInpatientEpisode(factory, voTransfer);
factory.save(doTrans);
return InpatientEpisodeForTransfersVoAssembler.create(doTrans);
}
TransfersImpl.java 文件源码
java
阅读 23
收藏 0
点赞 0
评论 0
项目:openMAXIMS
作者:
评论列表
文章目录