///<summary> /// Returns a single repetition of Pre-certification required / window(IN3-20). /// throws HL7Exception if the repetition number is invalid. /// <param name="rep">The repetition number (this is a repeating field)</param> ///</summary> public CM_PCF GetPreCertificationRequiredWindow(int rep) { CM_PCF ret = null; try { IType t = this.GetField(20, rep); ret = (CM_PCF)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); }
/// <summary> Returns a single repetition of Pre-certification required / window (IN3-20).</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_PCF getPreCertificationRequiredWindow(int rep) { CM_PCF ret = null; try { Type t = this.getField(20, rep); ret = (CM_PCF)t; } catch (System.InvalidCastException) { throw new Exception(); } return(ret); }
///<summary> /// Returns all repetitions of Pre-certification required / window (IN3-20). ///</summary> public CM_PCF[] GetPreCertificationRequiredWindow() { CM_PCF[] ret = null; try { IType[] t = this.GetField(20); ret = new CM_PCF[t.Length]; for (int i = 0; i < ret.Length; i++) { ret[i] = (CM_PCF)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); }
/// <summary> Returns all repetitions of Pre-certification required / window (IN3-20).</summary> public virtual CM_PCF[] getPreCertificationRequiredWindow() { CM_PCF[] ret = null; try { Type[] t = this.getField(20); ret = new CM_PCF[t.Length]; for (int i = 0; i < ret.Length; i++) { ret[i] = (CM_PCF)t[i]; } } catch (System.InvalidCastException) { throw new Exception(); } catch (NuGenHL7Exception) { throw new Exception(); } return(ret); }