示例#1
0
        /// <summary>
        /// Returns  first repetition of CSU_C09_PATIENT (a Group object) - creates it if necessary.
        /// </summary>
        ///
        /// <exception cref="Exception">    Thrown when an exception error condition occurs. </exception>
        ///
        /// <returns>   The patient. </returns>

        public CSU_C09_PATIENT GetPATIENT()
        {
            CSU_C09_PATIENT ret = null;

            try {
                ret = (CSU_C09_PATIENT)this.GetStructure("PATIENT");
            } catch (HL7Exception e) {
                HapiLogFactory.GetHapiLog(GetType()).Error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
                throw new System.Exception("An unexpected error ocurred", e);
            }
            return(ret);
        }
示例#2
0
		/// <summary> Returns  first repetition of CSU_C09_PATIENT (a Group object) - creates it if necessary</summary>
		public virtual CSU_C09_PATIENT getPATIENT()
		{
			CSU_C09_PATIENT ret = null;
			try
			{
				ret = (CSU_C09_PATIENT) this.get_Renamed("PATIENT");
			}
			catch (NuGenHL7Exception)
			{
				throw new Exception();
			}
			return ret;
		}
示例#3
0
文件: CSU_C09.cs 项目: nHapiNET/nHapi
 ///<summary>
 ///Removes the given CSU_C09_PATIENT
 ///</summary>
 public void RemovePATIENT(CSU_C09_PATIENT toRemove)
 {
     this.RemoveStructure("PATIENT", toRemove);
 }