Beispiel #1
0
 ///<summary>
 /// Creates a EIP.
 /// <param name="message">The Message to which this Type belongs</param>
 ///</summary>
 public EIP(Message message, string description)
     : base(message, description)
 {
     data = new Type[2];
     data[0] = new EI(message,"Placer Assigned Identifier");
     data[1] = new EI(message,"Filler Assigned Identifier");
 }
Beispiel #2
0
 ///<summary>
 /// Creates a PIP.
 /// <param name="message">The Message to which this Type belongs</param>
 ///</summary>
 public PIP(Message message, string description) : base(message, description)
 {
     data    = new Type[5];
     data[0] = new CE(message, "Privilege");
     data[1] = new CE(message, "Privilege Class");
     data[2] = new DT(message, "Expiration Date");
     data[3] = new DT(message, "Activation Date");
     data[4] = new EI(message, "Facility");
 }
Beispiel #3
0
 ///<summary>
 /// Creates a PIP.
 /// <param name="message">The Message to which this Type belongs</param>
 ///</summary>
 public PIP(Message message, string description)
     : base(message, description)
 {
     data = new Type[5];
     data[0] = new CE(message,"Privilege");
     data[1] = new CE(message,"Privilege Class");
     data[2] = new DT(message,"Expiration Date");
     data[3] = new DT(message,"Activation Date");
     data[4] = new EI(message,"Facility");
 }
Beispiel #4
0
 ///<summary>
 /// Creates a PL.
 /// <param name="message">The Message to which this Type belongs</param>
 ///</summary>
 public PL(Message message, string description) : base(message, description)
 {
     data     = new Type[11];
     data[0]  = new IS(message, 302, "Point of Care");
     data[1]  = new IS(message, 303, "Room");
     data[2]  = new IS(message, 304, "Bed");
     data[3]  = new HD(message, "Facility");
     data[4]  = new IS(message, 306, "Location Status");
     data[5]  = new IS(message, 305, "Person Location Type");
     data[6]  = new IS(message, 307, "Building");
     data[7]  = new IS(message, 308, "Floor");
     data[8]  = new ST(message, "Location Description");
     data[9]  = new EI(message, "Comprehensive Location Identifier");
     data[10] = new HD(message, "Assigning Authority for Location");
 }
Beispiel #5
0
 ///<summary>
 /// Creates a PL.
 /// <param name="message">The Message to which this Type belongs</param>
 ///</summary>
 public PL(Message message, string description)
     : base(message, description)
 {
     data = new Type[11];
     data[0] = new IS(message, 302,"Point of Care");
     data[1] = new IS(message, 303,"Room");
     data[2] = new IS(message, 304,"Bed");
     data[3] = new HD(message,"Facility");
     data[4] = new IS(message, 306,"Location Status");
     data[5] = new IS(message, 305,"Person Location Type");
     data[6] = new IS(message, 307,"Building");
     data[7] = new IS(message, 308,"Floor");
     data[8] = new ST(message,"Location Description");
     data[9] = new EI(message,"Comprehensive Location Identifier");
     data[10] = new HD(message,"Assigning Authority for Location");
 }
Beispiel #6
0
 /**
    * Returns all repetitions of Message Profile Identifier (MSH-21).
    */
 public EI[] getMessageProfileIdentifier()
 {
     EI[] ret = null;
     try {
     Type[] t = this.getField(21);
     ret = new EI[t.Length];
     for (int i = 0; i < ret.Length; i++) {
     ret[i] = (EI)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;
 }
Beispiel #7
0
 ///<summary>
 /// Creates a EIP.
 /// <param name="message">The Message to which this Type belongs</param>
 ///</summary>
 public EIP(Message message, string description) : base(message, description)
 {
     data    = new Type[2];
     data[0] = new EI(message, "Placer Assigned Identifier");
     data[1] = new EI(message, "Filler Assigned Identifier");
 }