/// <summary> Creates a CK.</summary> /// <param name="message">the Message to which this Type belongs /// </param> public CK(Message message) : base(message) { data = new Type[3]; data[0] = new NM(message); data[1] = new NM(message); data[2] = new ID(message, 0); }
///<summary> /// Creates a CE. /// <param name="message">The Message to which this Type belongs</param> ///</summary> public CE(Message message, string description) : base(message, description) { data = new Type[6]; data[0] = new ID(message, 0,"Identifier"); data[1] = new ST(message,"Text"); data[2] = new ST(message,"Name of coding system"); data[3] = new ST(message,"Alternate identifier"); data[4] = new ST(message,"Alternate text"); data[5] = new ST(message,"Name of alternate coding system"); }
///<summary> /// Creates a AD. /// <param name="message">The Message to which this Type belongs</param> ///</summary> public AD(Message message) : base(message) { data = new Type[8]; data[0] = new ST(message); data[1] = new ST(message); data[2] = new ST(message); data[3] = new ST(message); data[4] = new ST(message); data[5] = new ID(message, 0); data[6] = new ID(message, 0); data[7] = new ST(message); }
/** * Returns all repetitions of ERROR CODE AND LOCATION (ERR-1). */ public ID[] getERRORCODEANDLOCATION() { ID[] ret = null; try { Type[] t = this.getField(1); ret = new ID[t.Length]; for (int i = 0; i < ret.Length; i++) { ret[i] = (ID)t[i]; } } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem obtaining field value. This is a bug.", he); throw new System.Exception("An unexpected error ocurred", he); } catch (System.Exception cce) { HapiLogFactory.getHapiLog(GetType()).error("Unexpected problem obtaining field value. This is a bug.", cce); throw new System.Exception("An unexpected error ocurred", cce); } return ret; }