Beispiel #1
0
 ///<summary>
 /// Creates a XTN.
 /// <param name="message">The Message to which this Type belongs</param>
 /// <param name="description">The description of this type</param>
 ///</summary>
 public XTN(IMessage message, string description) : base(message, description)
 {
     data    = new IType[9];
     data[0] = new TN(message, "[(999)] 999-9999 [X99999][C any text]");
     data[1] = new ID(message, 0, "Telecommunication use code");
     data[2] = new ID(message, 0, "Telecommunication equipment type (ID)");
     data[3] = new ST(message, "Email address");
     data[4] = new NM(message, "Country Code");
     data[5] = new NM(message, "Area/city code");
     data[6] = new NM(message, "Phone number");
     data[7] = new NM(message, "Extension");
     data[8] = new ST(message, "Any text");
 }
Beispiel #2
0
 ///<summary>
 /// Creates a XTN.
 /// <param name="message">The Message to which this Type belongs</param>
 /// <param name="description">The description of this type</param>
 ///</summary>
 public XTN(IMessage message, string description)
     : base(message, description)
 {
     data = new IType[9];
     data[0] = new TN(message,"[(999)] 999-9999 [X99999][C any text]");
     data[1] = new ID(message, 0,"Telecommunication use code");
     data[2] = new ID(message, 0,"Telecommunication equipment type (ID)");
     data[3] = new ST(message,"Email address");
     data[4] = new NM(message,"Country Code");
     data[5] = new NM(message,"Area/city code");
     data[6] = new NM(message,"Phone number");
     data[7] = new NM(message,"Extension");
     data[8] = new ST(message,"Any text");
 }
Beispiel #3
0
 ///<summary>
 /// Returns all repetitions of Phone (STF-10).
 ///</summary>
 public TN[] GetPhone()
 {
     TN[] ret = null;
     try {
     IType[] t = this.GetField(10);
     ret = new TN[t.Length];
     for (int i = 0; i < ret.Length; i++) {
     ret[i] = (TN)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;
 }