예제 #1
0
        /// <summary>
        /// Returns a single repetition of Policy type / amount(IN2-29). throws HL7Exception if the
        /// repetition number is invalid.
        /// </summary>
        ///
        /// <exception cref="Exception">    Thrown when an exception error condition occurs. </exception>
        ///
        /// <param name="rep">  The repetition number (this is a repeating field) </param>
        ///
        /// <returns>   The policy type amount. </returns>

        public CM_PTA GetPolicyTypeAmount(int rep)
        {
            CM_PTA ret = null;

            try
            {
                IType t = this.GetField(29, rep);
                ret = (CM_PTA)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 Policy type / amount (IN2-29).</summary>
        /// <param name="rep">the repetition number (this is a repeating field)
        /// </param>
        /// <throws>  HL7Exception if the repetition number is invalid. </throws>
        public virtual CM_PTA getPolicyTypeAmount(int rep)
        {
            CM_PTA ret = null;

            try
            {
                Type t = this.getField(29, rep);
                ret = (CM_PTA)t;
            }
            catch (System.InvalidCastException)
            {
                throw new Exception();
            }
            return(ret);
        }
예제 #3
0
        /// <summary> Returns all repetitions of Policy type / amount (IN2-29). </summary>
        ///
        /// <exception cref="Exception">  Thrown when an exception error condition occurs. </exception>
        ///
        /// <returns> An array of centimetres pta. </returns>

        public CM_PTA[] GetPolicyTypeAmount()
        {
            CM_PTA[] ret = null;
            try {
                IType[] t = this.GetField(29);
                ret = new CM_PTA[t.Length];
                for (int i = 0; i < ret.Length; i++)
                {
                    ret[i] = (CM_PTA)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 Policy type / amount (IN2-29).</summary>
 public virtual CM_PTA[] getPolicyTypeAmount()
 {
     CM_PTA[] ret = null;
     try
     {
         Type[] t = this.getField(29);
         ret = new CM_PTA[t.Length];
         for (int i = 0; i < ret.Length; i++)
         {
             ret[i] = (CM_PTA)t[i];
         }
     }
     catch (System.InvalidCastException)
     {
         throw new Exception();
     }
     catch (NuGenHL7Exception)
     {
         throw new Exception();
     }
     return(ret);
 }