public ServiceFunctionLiteVoCollection listServiceFunctionByService(ServiceRefVo service)
{
if(service == null || service.getID_Service() == null)
throw new CodingRuntimeException("service parameter is null or id not provided in method listServiceFunctionByService");
DomainFactory factory = getDomainFactory();
List servFuncs = factory.find("from ServiceFunction as servFunc where servFunc.service.id = :idService",new String[]{"idService"}, new Object[]{service.getID_Service()});
return ServiceFunctionLiteVoAssembler.createServiceFunctionLiteVoCollectionFromServiceFunction(servFuncs);
}
ProfilesSlotGenericImpl.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:openmaxims-linux
作者:
评论列表
文章目录