Пример #1
0
		/// <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;
		}
Пример #2
0
		/// <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;
		}