コード例 #1
0
ファイル: CRM_C02.cs プロジェクト: erdemsarigh/nhapi
        /// <summary>
        /// Returns  first repetition of CRM_C02_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 CRM_C02_PATIENT GetPATIENT()
        {
            CRM_C02_PATIENT ret = null;

            try {
                ret = (CRM_C02_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);
        }
コード例 #2
0
ファイル: CRM_C02.cs プロジェクト: tristanwilson111/nHapi
 ///<summary>
 ///Removes the given CRM_C02_PATIENT
 ///</summary>
 public void RemovePATIENT(CRM_C02_PATIENT toRemove)
 {
     this.RemoveStructure("PATIENT", toRemove);
 }