コード例 #1
0
        ///<summary>
        /// Returns  first repetition of SLT (Sterilization Lot) - creates it if necessary
        ///</summary>
        public SLT GetSLT()
        {
            SLT ret = null;

            try {
                ret = (SLT)this.GetStructure("SLT");
            } 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>
 ///Removes the given SLT
 ///</summary>
 public void RemoveSLT(SLT toRemove)
 {
     this.RemoveStructure("SLT", toRemove);
 }