示例#1
0
 ///<summary>
 /// Creates a OSP.
 /// <param name="message">The Message to which this Type belongs</param>
 /// <param name="description">The description of this type</param>
 ///</summary>
 public OSP(IMessage message, string description) : base(message, description)
 {
     data    = new IType[3];
     data[0] = new CNE(message, "Occurrence Span Code");
     data[1] = new DT(message, "Occurrence Span Start Date");
     data[2] = new DT(message, "Occurrence Span Stop Date");
 }
示例#2
0
文件: UVC.cs 项目: snosrap/nhapi
 ///<summary>
 /// Creates a UVC.
 /// <param name="message">The Message to which this Type belongs</param>
 /// <param name="description">The description of this type</param>
 ///</summary>
 public UVC(IMessage message, string description)
     : base(message, description)
 {
     data = new IType[2];
     data[0] = new CNE(message,"Value Code");
     data[1] = new MO(message,"Value Amount");
 }
示例#3
0
文件: OCD.cs 项目: snosrap/nhapi
 ///<summary>
 /// Creates a OCD.
 /// <param name="message">The Message to which this Type belongs</param>
 /// <param name="description">The description of this type</param>
 ///</summary>
 public OCD(IMessage message, string description)
     : base(message, description)
 {
     data = new IType[2];
     data[0] = new CNE(message,"Occurrence Code");
     data[1] = new DT(message,"Occurrence Date");
 }
示例#4
0
文件: OSP.cs 项目: snosrap/nhapi
 ///<summary>
 /// Creates a OSP.
 /// <param name="message">The Message to which this Type belongs</param>
 /// <param name="description">The description of this type</param>
 ///</summary>
 public OSP(IMessage message, string description)
     : base(message, description)
 {
     data = new IType[3];
     data[0] = new CNE(message,"Occurrence Span Code");
     data[1] = new DT(message,"Occurrence Span Start Date");
     data[2] = new DT(message,"Occurrence Span Stop Date");
 }
示例#5
0
文件: BPX.cs 项目: snosrap/nhapi
 ///<summary>
 /// Returns all repetitions of BC Special Testing (BPX-12).
 ///</summary>
 public CNE[] GetBCSpecialTesting()
 {
     CNE[] ret = null;
     try {
     IType[] t = this.GetField(12);
     ret = new CNE[t.Length];
     for (int i = 0; i < ret.Length; i++) {
     ret[i] = (CNE)t[i];
     }
     } catch (HL7Exception he) {
     HapiLogFactory.GetHapiLog(this.GetType()).Error("Unexpected problem obtaining field value.  This is a bug.", he);
     throw new System.Exception("An unexpected error ocurred", he);
     } catch (System.Exception cce) {
     HapiLogFactory.GetHapiLog(GetType()).Error("Unexpected problem obtaining field value.  This is a bug.", cce);
     throw new System.Exception("An unexpected error ocurred", cce);
       }
      return ret;
 }
示例#6
0
 ///<summary>
 /// Creates a UVC.
 /// <param name="message">The Message to which this Type belongs</param>
 /// <param name="description">The description of this type</param>
 ///</summary>
 public UVC(IMessage message, string description) : base(message, description)
 {
     data    = new IType[2];
     data[0] = new CNE(message, "Value Code");
     data[1] = new MO(message, "Value Amount");
 }
示例#7
0
 ///<summary>
 /// Creates a OCD.
 /// <param name="message">The Message to which this Type belongs</param>
 /// <param name="description">The description of this type</param>
 ///</summary>
 public OCD(IMessage message, string description) : base(message, description)
 {
     data    = new IType[2];
     data[0] = new CNE(message, "Occurrence Code");
     data[1] = new DT(message, "Occurrence Date");
 }