Beispiel #1
0
    /// <summary>
    /// Returns  first repetition of SRR_S02_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 SRR_S02_PATIENT GetPATIENT() {
	   SRR_S02_PATIENT ret = null;
	   try {
	      ret = (SRR_S02_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;
	}
 ///<summary>
 ///Removes the given SRR_S02_PATIENT
 ///</summary>
 public void RemovePATIENT(SRR_S02_PATIENT toRemove)
 {
     this.RemoveStructure("PATIENT", toRemove);
 }