Exemple #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,"Parent´s placer order number");
     data[1] = new EI(message,"Parent´s filler order number");
 }
Exemple #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 (EI)");
 }
Exemple #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 (EI)");
 }
Exemple #4
0
 /**
    * Returns all repetitions of Alternate Study ID (CM0-3).
    */
 public EI[] getAlternateStudyID()
 {
     EI[] ret = null;
     try {
     Type[] t = this.getField(3);
     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;
 }
Exemple #5
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, "Parent´s placer order number");
     data[1] = new EI(message, "Parent´s filler order number");
 }