예제 #1
0
파일: RDE_O11.cs 프로젝트: nHapiNET/nHapi
	///<summary>
	/// Returns  first repetition of RDE_O11_ORDER (a Group object) - creates it if necessary
	///</summary>
	public RDE_O11_ORDER GetORDER() {
	   RDE_O11_ORDER ret = null;
	   try {
	      ret = (RDE_O11_ORDER)this.GetStructure("ORDER");
	   } 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 RDE_O11_ORDER (a Group object) - creates it if necessary</summary>
        public virtual RDE_O11_ORDER getORDER()
        {
            RDE_O11_ORDER ret = null;

            try
            {
                ret = (RDE_O11_ORDER)this.get_Renamed("ORDER");
            }
            catch (NuGenHL7Exception)
            {
                throw new Exception();
            }
            return(ret);
        }
예제 #3
0
파일: RDE_O11.cs 프로젝트: nHapiNET/nHapi
 ///<summary>
 ///Removes the given RDE_O11_ORDER
 ///</summary>
 public void RemoveORDER(RDE_O11_ORDER toRemove)
 {
     this.RemoveStructure("ORDER", toRemove);
 }