Package se.inera.ifv.casebox.core.service

Examples of se.inera.ifv.casebox.core.service.CareUnitInfo


        /**
         * @param resultList
         */
        public void addAll(List<CareUnitInfoInternal> resultList) {
            for(CareUnitInfoInternal i : resultList) {
                CareUnitInfo info = result.get(i.getName());
                if(info == null) {
                    info = new CareUnitInfo(i.getName());
                    result.put(i.getName(), info);
                }
                i.update(info);
            }
        }
View Full Code Here

TOP

Related Classes of se.inera.ifv.casebox.core.service.CareUnitInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.