Beispiel #1
0
	///<summary>
	/// Creates a CF.
	/// <param name="message">The Message to which this Type belongs</param>
	/// <param name="description">The description of this type</param>
	///</summary>
	public CF(IMessage message, string description) : base(message, description){
		data = new IType[6];
		data[0] = new ID(message, 0,"Identifier (ID)");
		data[1] = new FT(message,"Formatted text");
		data[2] = new IS(message, 0,"Name of coding system");
		data[3] = new ID(message, 0,"Alternate identifier (ID)");
		data[4] = new FT(message,"Alternate formatted text");
		data[5] = new IS(message, 0,"Name of alternate coding system");
	}
Beispiel #2
0
 ///<summary>
 /// Returns all repetitions of Comment (NTE-3).
 ///</summary>
 public FT[] GetComment()
 {
     FT[] ret = null;
     try
     {
         IType[] t = this.GetField(3);
         ret = new FT[t.Length];
         for (int i = 0; i < ret.Length; i++)
         {
             ret[i] = (FT)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;
 }