/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package gov.hhs.fha.nhinc.common.patientcorrelationfacade.dte.helpers; import org.hl7.v3.CS; /** * * @author rayj */ public class CSHelper { public static CS buildCS(String code) { CS csCode = new CS(); csCode.setCode(code); return csCode; } }