Package clips.delegate.doctor.direction

Examples of clips.delegate.doctor.direction.DirectionLocal


        List<DirectionLocal> directionLocals = new ArrayList<DirectionLocal>();
        try {
            List<DirectionDetails> list = getBean().getDirectionList();
            for(DirectionDetails d : list) {
                SerRenLocal serRen = new SerRenLocal(d.serviceRenderID, getAuditListener());
                DirectionLocal dir = new DirectionLocal(d, serRen, getAuditListener());
                directionLocals.add(dir);
            }
        } catch (Exception ex) {          
            clearBean();
            throw new ClipsException("Не удалось загрузить список направлений пациента",ex);
View Full Code Here


            super(contaner);
        }
       
        @Override
        protected DirectionLocal createDelegate(DirectionDetails d) throws Exception {
            return new DirectionLocal(d, SerRenLocal.this, getAuditListener());
        }
View Full Code Here

        }
    }
       
    public DirectionLocal getDirection(AuditListener al) throws ClipsException {
        if(!direction.inCache()) {
            DirectionLocal dl = new DirectionLocal(getDetails().directionID, al);
            direction.set(dl);
        }
        return direction.get();
    }
View Full Code Here

TOP

Related Classes of clips.delegate.doctor.direction.DirectionLocal

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.