Esempio n. 1
0
	///<summary>
	/// Returns  first repetition of REF_I12_OBSERVATION (a Group object) - creates it if necessary
	///</summary>
	public REF_I12_OBSERVATION GetOBSERVATION() {
	   REF_I12_OBSERVATION ret = null;
	   try {
	      ret = (REF_I12_OBSERVATION)this.GetStructure("OBSERVATION");
	   } 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 REF_I12_OBSERVATION (a Group object) - creates it if necessary</summary>
        public virtual REF_I12_OBSERVATION getOBSERVATION()
        {
            REF_I12_OBSERVATION ret = null;

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