public static HL7Element AsElement(this IEnumerable <CX_CompositeId> cxs) { var element = new HL7Element(String.Empty, '~'); if (cxs.Any()) { foreach (var cx in cxs) { element.Add(cx); } } return(element); }