Package ke.go.moh.oec.pisinterfaces.util

Examples of ke.go.moh.oec.pisinterfaces.util.PatientIdType


     */
    public void setIdentificationType(String identificationType) {

        this.identificationType = identificationType;
        if (this.identificationType.equalsIgnoreCase("1")) {
            PatientIdType idType = PatientIdType.ClinicalId;
            this.identificationType = idType.name();
        } else if (this.identificationType.equalsIgnoreCase("2")) {
            PatientIdType idType = PatientIdType.HDSS;
            this.identificationType = idType.name();

        }
    }
View Full Code Here

TOP

Related Classes of ke.go.moh.oec.pisinterfaces.util.PatientIdType

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.