本文整理汇总了Java中ims.core.vo.domain.PatientProcedureShortListVoAssembler类的典型用法代码示例。如果您正苦于以下问题:Java PatientProcedureShortListVoAssembler类的具体用法?Java PatientProcedureShortListVoAssembler怎么用?Java PatientProcedureShortListVoAssembler使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
PatientProcedureShortListVoAssembler类属于ims.core.vo.domain包,在下文中一共展示了PatientProcedureShortListVoAssembler类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: listProceduresByCareContext
import ims.core.vo.domain.PatientProcedureShortListVoAssembler; //导入依赖的package包/类
public PatientProcedureShortListVoCollection listProceduresByCareContext(CareContextRefVo careContextRefVo)
{
if(careContextRefVo == null)
throw new DomainRuntimeException("Invalid Care Context Ref");
DomainFactory factory = getDomainFactory();
StringBuffer hql = new StringBuffer("from PatientProcedure p ");
hql.append(" where p.careContext.id = " + careContextRefVo.getID_CareContext());
return PatientProcedureShortListVoAssembler.createPatientProcedureShortListVoCollectionFromPatientProcedure(factory.find(hql.toString()));
}
示例2: listProceduresByEpisodeOfCareShortList
import ims.core.vo.domain.PatientProcedureShortListVoAssembler; //导入依赖的package包/类
public PatientProcedureShortListVoCollection listProceduresByEpisodeOfCareShortList(EpisodeOfCareRefVo episodeOfCareRefVo)
{
if(episodeOfCareRefVo == null)
throw new DomainRuntimeException("Invalid Care Context Ref");
DomainFactory factory = getDomainFactory();
StringBuffer hql = new StringBuffer("from PatientProcedure p ");
hql.append(" where p.careContext.episodeOfCare.id = " + episodeOfCareRefVo.getID_EpisodeOfCare());
return PatientProcedureShortListVoAssembler.createPatientProcedureShortListVoCollectionFromPatientProcedure(factory.find(hql.toString()));
}
示例3: listProcedure
import ims.core.vo.domain.PatientProcedureShortListVoAssembler; //导入依赖的package包/类
/**
* listProcedure by clinical contact
*/
public ims.core.vo.PatientProcedureShortListVoCollection listProcedure(ims.core.admin.vo.ClinicalContactRefVo clinicalContactRefVo)
{
List list = listProcedures(clinicalContactRefVo, null);
return PatientProcedureShortListVoAssembler.createPatientProcedureShortListVoCollectionFromPatientProcedure(list);
}
示例4: listProcedureShortListVoByPatient
import ims.core.vo.domain.PatientProcedureShortListVoAssembler; //导入依赖的package包/类
public PatientProcedureShortListVoCollection listProcedureShortListVoByPatient(PatientRefVo patient)
{
List list = listProcedures(null, patient, null);
return PatientProcedureShortListVoAssembler.createPatientProcedureShortListVoCollectionFromPatientProcedure(list);
}