Example #1
0
  ///<summary>
  /// Returns all repetitions of Facility ID (FAC-1).
   ///</summary>
  public EI[] GetFacilityID() {
     EI[] ret = null;
    try {
        IType[] t = this.GetField(1);  
        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;
}
Example #2
0
	///<summary>
	/// Creates a CM_EIP.
	/// <param name="message">The Message to which this Type belongs</param>
	/// <param name="description">The description of this type</param>
	///</summary>
	public CM_EIP(IMessage message, string description) : base(message, description){
		data = new IType[2];
		data[0] = new EI(message,"Parent´s placer order number");
		data[1] = new EI(message,"Parent´s filler order number");
	}
Example #3
0
        /// <summary>   Creates a CM_EIP. </summary>
        ///
        /// <param name="message">      The Message to which this Type belongs. </param>
        /// <param name="description">  The description of this type. </param>

        public CM_EIP(IMessage message, string description) : base(message, description)
        {
            data    = new IType[2];
            data[0] = new EI(message, "Parent´s placer order number");
            data[1] = new EI(message, "Parent´s filler order number");
        }