Package systole.synchronization.remote.ws

Examples of systole.synchronization.remote.ws.PathologyWs


     */
    public PathologyWs generateRemotePathology(Pathology pathology) {
        if (pathology == null) {
            return null;
        }
        PathologyWs pathologyWs = new PathologyWs();
        pathologyWs.setDescription(pathology.getDescription());
        pathologyWs.setInitials(pathology.getInitials());
        pathologyWs.setName(pathology.getName());
        return pathologyWs;
    }
View Full Code Here

TOP

Related Classes of systole.synchronization.remote.ws.PathologyWs

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.