Esempio n. 1
0
    /// <summary>
    /// Returns  first repetition of ADT_A39_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 ADT_A39_PATIENT GetPATIENT() {
	   ADT_A39_PATIENT ret = null;
	   try {
	      ret = (ADT_A39_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;
	}
Esempio n. 2
0
        /// <summary> Returns  first repetition of ADT_A39_PATIENT (a Group object) - creates it if necessary</summary>
        public virtual ADT_A39_PATIENT getPATIENT()
        {
            ADT_A39_PATIENT ret = null;

            try
            {
                ret = (ADT_A39_PATIENT)this.get_Renamed("PATIENT");
            }
            catch (NuGenHL7Exception)
            {
                throw new Exception();
            }
            return(ret);
        }
Esempio n. 3
0
 ///<summary>
 ///Removes the given ADT_A39_PATIENT
 ///</summary>
 public void RemovePATIENT(ADT_A39_PATIENT toRemove)
 {
     this.RemoveStructure("PATIENT", toRemove);
 }