Пример #1
0
	///<summary>
	/// Returns  first repetition of PPV_PCA_PROBLEM (a Group object) - creates it if necessary
	///</summary>
	public PPV_PCA_PROBLEM GetPROBLEM() {
	   PPV_PCA_PROBLEM ret = null;
	   try {
	      ret = (PPV_PCA_PROBLEM)this.GetStructure("PROBLEM");
	   } 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 PPV_PCA_PROBLEM
 ///</summary>
 public void RemovePROBLEM(PPV_PCA_PROBLEM toRemove)
 {
     this.RemoveStructure("PROBLEM", toRemove);
 }