Beispiel #1
0
		/// <summary> Returns all repetitions of Mother’s Maiden Name (NK1-26).</summary>
		public virtual XPN[] getMotherSMaidenName()
		{
			XPN[] ret = null;
			try
			{
				Type[] t = this.getField(26);
				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;
		}
Beispiel #2
0
		/// <summary> Returns all repetitions of Insured’s Contact Person’s Name (IN2-52).</summary>
		public virtual XPN[] getInsuredSContactPersonSName()
		{
			XPN[] ret = null;
			try
			{
				Type[] t = this.getField(52);
				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;
		}