Examples of Excemption


Examples of beans.directory.simple.entities.Excemption

                else {
                    data.sex = Character.MIN_VALUE;
                }
                data.bornDate = born;

                Excemption ex = fc.getExcemption1();
                if (ex == null) {
                    ex = fc.getExcemption2();
                }
                if (ex != null) {
                    data.exemptionID = ex.getExtKey();
                }

                ClientDocument doc = client.getClientDocument();
                if (doc != null) {
                    ClientDocumentType type = doc.getDoctype();
View Full Code Here

Examples of beans.directory.simple.entities.Excemption

            query.setParameter("pathronymic", cl.getPathronymic());
            query.setParameter("snils", cl.getSnils());
            List<FacilityClient> fcList = query.getResultList();
            if (!fcList.isEmpty()) {
                FacilityClient fc = fcList.get(0);
                Excemption ex = fc.getExcemption1();
                if (ex == null) {
                    ex = fc.getExcemption2();
                }
                if (ex != null) {
                    data.exemptionID = ex.getExtKey();
                }
            }

            Polis polisOMI = clientPolisMap.get(cl.getId());
            if (polisOMI != null) {
View Full Code Here

Examples of org.infotechservice.smartcard.smartcard.NewSocialCardService.Excemption

                            + "\n Birthday: "  + service.getBirthDay()
                            + "\n Serial: "  + service.getSerial()
                            + "\n SNILS: "  + service.getSnils()
                            + "\n INN: "  + service.getInn());
                    for(int i=0; i<12; i++) {
                        Excemption exc = service.getExcemption(i);
                        if(exc == null) {
                            continue;
                        }
                        System.out.println(" excemption " + i
                                + ": type:" + exc.type
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.