using NHapi.Base.Parser;
using NHapi.Base;
using NHapi.Base.Log;
using System;
using NHapi.Model.V251.Segment;
using NHapi.Base.Model;
namespace NHapi.Model.V251.Group{
///<summary>
///Represents the OML_O33_ORDER Group. A Group is an ordered collection of message
/// segments that can repeat together or be optionally in/excluded together.
/// This Group contains the following elements:
///<ol>
///<li>0: ORC (Common Order) </li>
///<li>1: OML_O33_TIMING (a Group object) </li>
///<li>2: OML_O33_OBSERVATION_REQUEST (a Group object) optional </li>
///<li>3: FT1 (Financial Transaction) optional repeating</li>
///<li>4: CTI (Clinical Trial Identification) optional repeating</li>
///<li>5: BLG (Billing) optional </li>
///</ol>
///</summary>
[Serializable]
public class OML_O33_ORDER : AbstractGroup {
///<summary>
/// Creates a new OML_O33_ORDER Group.
///</summary>
public OML_O33_ORDER(IGroup parent, IModelClassFactory factory) : base(parent, factory){
try {
this.add(typeof(ORC), true, false);
this.add(typeof(OML_O33_TIMING), true, false);
this.add(typeof(OML_O33_OBSERVATION_REQUEST), false, false);
this.add(typeof(FT1), false, true);
this.add(typeof(CTI), false, true);
this.add(typeof(BLG), false, false);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error creating OML_O33_ORDER - this is probably a bug in the source code generator.", e);
}
}
///<summary>
/// Returns ORC (Common Order) - creates it if necessary
///</summary>
public ORC ORC {
get{
ORC ret = null;
try {
ret = (ORC)this.GetStructure("ORC");
} 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;
}
}
///<summary>
/// Returns OML_O33_TIMING (a Group object) - creates it if necessary
///</summary>
public OML_O33_TIMING TIMING {
get{
OML_O33_TIMING ret = null;
try {
ret = (OML_O33_TIMING)this.GetStructure("TIMING");
} 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;
}
}
///<summary>
/// Returns OML_O33_OBSERVATION_REQUEST (a Group object) - creates it if necessary
///</summary>
public OML_O33_OBSERVATION_REQUEST OBSERVATION_REQUEST {
get{
OML_O33_OBSERVATION_REQUEST ret = null;
try {
ret = (OML_O33_OBSERVATION_REQUEST)this.GetStructure("OBSERVATION_REQUEST");
} 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;
}
}
///<summary>
/// Returns first repetition of FT1 (Financial Transaction) - creates it if necessary
///</summary>
public FT1 GetFT1() {
FT1 ret = null;
try {
ret = (FT1)this.GetStructure("FT1");
} 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;
}
///<summary>
///Returns a specific repetition of FT1
/// * (Financial Transaction) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public FT1 GetFT1(int rep) {
return (FT1)this.GetStructure("FT1", rep);
}
/**
* Returns the number of existing repetitions of FT1
*/
public int FT1RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("FT1").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns first repetition of CTI (Clinical Trial Identification) - creates it if necessary
///</summary>
public CTI GetCTI() {
CTI ret = null;
try {
ret = (CTI)this.GetStructure("CTI");
} 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;
}
///<summary>
///Returns a specific repetition of CTI
/// * (Clinical Trial Identification) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public CTI GetCTI(int rep) {
return (CTI)this.GetStructure("CTI", rep);
}
/**
* Returns the number of existing repetitions of CTI
*/
public int CTIRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("CTI").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns BLG (Billing) - creates it if necessary
///</summary>
public BLG BLG {
get{
BLG ret = null;
try {
ret = (BLG)this.GetStructure("BLG");
} 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;
}
}
}
}
|