/// <summary> Returns all repetitions of Prior Patient Name (MRG-7).</summary> public virtual XPN[] getPriorPatientName() { XPN[] ret = null; try { Type[] t = this.getField(7); ret = new XPN[t.Length]; for (int i = 0; i < ret.Length; i++) { ret[i] = (XPN) t[i]; } } catch (System.InvalidCastException ) { throw new Exception(); } catch (NuGenHL7Exception) { throw new Exception(); } return ret; }
/// <summary> Returns all repetitions of Insurance Co Contact Person (IN1-6).</summary> public virtual XPN[] getInsuranceCoContactPerson() { XPN[] ret = null; try { Type[] t = this.getField(6); ret = new XPN[t.Length]; for (int i = 0; i < ret.Length; i++) { ret[i] = (XPN) t[i]; } } catch (System.InvalidCastException ) { throw new Exception(); } catch (NuGenHL7Exception) { throw new Exception(); } return ret; }