示例#1
0
文件: ERQ.cs 项目: nHapiNET/nHapi
        ///<summary>
        /// Returns a single repetition of Input Parameter List(ERQ-3).
        /// throws HL7Exception if the repetition number is invalid.
        /// <param name="rep">The repetition number (this is a repeating field)</param>
        ///</summary>
        public QIP GetInputParameterList(int rep)
        {
            QIP ret = null;

            try
            {
                IType t = this.GetField(3, rep);
                ret = (QIP)t;
            } catch (System.Exception ex) {
                HapiLogFactory.GetHapiLog(GetType()).Error("Unexpected problem obtaining field value.  This is a bug.", ex);
                throw new System.Exception("An unexpected error ocurred", ex);
            }
            return(ret);
        }
示例#2
0
        /// <summary> Returns a single repetition of Input Parameter List (SPR-4).</summary>
        /// <param name="rep">the repetition number (this is a repeating field)
        /// </param>
        /// <throws>  HL7Exception if the repetition number is invalid. </throws>
        public virtual QIP getInputParameterList(int rep)
        {
            QIP ret = null;

            try
            {
                Type t = this.getField(4, rep);
                ret = (QIP)t;
            }
            catch (System.InvalidCastException)
            {
                throw new Exception();
            }
            return(ret);
        }
示例#3
0
文件: ERQ.cs 项目: nHapiNET/nHapi
 ///<summary>
 /// Returns all repetitions of Input Parameter List (ERQ-3).
 ///</summary>
 public QIP[] GetInputParameterList()
 {
     QIP[] ret = null;
     try {
         IType[] t = this.GetField(3);
         ret = new QIP[t.Length];
         for (int i = 0; i < ret.Length; i++)
         {
             ret[i] = (QIP)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);
 }
示例#4
0
 /// <summary> Returns all repetitions of Input Parameter List (SPR-4).</summary>
 public virtual QIP[] getInputParameterList()
 {
     QIP[] ret = null;
     try
     {
         Type[] t = this.getField(4);
         ret = new QIP[t.Length];
         for (int i = 0; i < ret.Length; i++)
         {
             ret[i] = (QIP)t[i];
         }
     }
     catch (System.InvalidCastException)
     {
         throw new Exception();
     }
     catch (NuGenHL7Exception)
     {
         throw new Exception();
     }
     return(ret);
 }