Package clips.delegate.doctor.direction

Examples of clips.delegate.doctor.direction.DirectionFactoryLocal


    private void btSearchActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btSearchActionPerformed
        try {
            int comReasonID = comReason == null ? 0 : comReason.getID();
            int clientID = client == null ? 0 : client.getID();
            DirectionFactoryLocal factory = new DirectionFactoryLocal(getAuditManager());
            directionList = factory.findDirectionListToComm(comReasonID, clientID, dateFrom, dateTill);
            comDirMembers = new ArrayList<CommitteeDirectionData>();
            for (int i = 0; i < directionList.size(); i++) {
                CommitteeDirectionData data = new CommitteeDirectionData(committee);
                data.setDirection(directionList.get(i));
                comDirMembers.add(data);
View Full Code Here

TOP

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

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.