Пример #1
0
	///<summary>
	/// Returns  first repetition of EAN_U09_NOTIFICATION (a Group object) - creates it if necessary
	///</summary>
	public EAN_U09_NOTIFICATION GetNOTIFICATION() {
	   EAN_U09_NOTIFICATION ret = null;
	   try {
	      ret = (EAN_U09_NOTIFICATION)this.GetStructure("NOTIFICATION");
	   } 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 EAN_U09_NOTIFICATION (a Group object) - creates it if necessary</summary>
        public virtual EAN_U09_NOTIFICATION getNOTIFICATION()
        {
            EAN_U09_NOTIFICATION ret = null;

            try
            {
                ret = (EAN_U09_NOTIFICATION)this.get_Renamed("NOTIFICATION");
            }
            catch (NuGenHL7Exception)
            {
                throw new Exception();
            }
            return(ret);
        }
Пример #3
0
 ///<summary>
 ///Removes the given EAN_U09_NOTIFICATION
 ///</summary>
 public void RemoveNOTIFICATION(EAN_U09_NOTIFICATION toRemove)
 {
     this.RemoveStructure("NOTIFICATION", toRemove);
 }