Ejemplo n.º 1
0
        /**
         * Returns a single repetition of Occurrence (28-32)(UB1-16).
         * @param rep the repetition number (this is a repeating field)
         * @throws HL7Exception if the repetition number is invalid.
         */
        public CM_OCD getOccurrence2832(int rep)
        {
            CM_OCD ret = null;

            try
            {
                Type t = this.getField(16, rep);
                ret = (CM_OCD)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);
        }
Ejemplo n.º 2
0
        /// <summary> Returns a single repetition of Occurrence code and date (32-35) (UB2-7).</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_OCD getOccurrenceCodeAndDate3235(int rep)
        {
            CM_OCD ret = null;

            try
            {
                Type t = this.getField(7, rep);
                ret = (CM_OCD)t;
            }
            catch (System.InvalidCastException)
            {
                throw new Exception();
            }
            return(ret);
        }
Ejemplo n.º 3
0
 /**
  * Returns all repetitions of Occurrence (28-32) (UB1-16).
  */
 public CM_OCD[] getOccurrence2832()
 {
     CM_OCD[] ret = null;
     try {
         Type[] t = this.getField(16);
         ret = new CM_OCD[t.Length];
         for (int i = 0; i < ret.Length; i++)
         {
             ret[i] = (CM_OCD)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);
 }
Ejemplo n.º 4
0
 /// <summary> Returns all repetitions of Occurrence code and date (32-35) (UB2-7).</summary>
 public virtual CM_OCD[] getOccurrenceCodeAndDate3235()
 {
     CM_OCD[] ret = null;
     try
     {
         Type[] t = this.getField(7);
         ret = new CM_OCD[t.Length];
         for (int i = 0; i < ret.Length; i++)
         {
             ret[i] = (CM_OCD)t[i];
         }
     }
     catch (System.InvalidCastException)
     {
         throw new Exception();
     }
     catch (NuGenHL7Exception)
     {
         throw new Exception();
     }
     return(ret);
 }