public static org.opencds.vmr.v1_0.schema.BodySite pushOut(BodySite source) {
    if (source == null) return null;
    org.opencds.vmr.v1_0.schema.BodySite target = new org.opencds.vmr.v1_0.schema.BodySite();
    if (source.getBodySiteCode() != null)
      target.setBodySiteCode(MappingUtility.cDInternal2CD(source.getBodySiteCode()));
    if (source.getLaterality() != null)
      target.setLaterality(MappingUtility.cDInternal2CD(source.getLaterality()));

    return target;
  }