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 RSP_Z82_COMMON_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: RSP_Z82_TIMING (a Group object) </li>
///<li>2: RSP_Z82_ORDER_DETAIL (a Group object) optional </li>
///<li>3: RSP_Z82_ENCODED_ORDER (a Group object) optional </li>
///<li>4: RXD (Pharmacy/Treatment Dispense) </li>
///<li>5: RXR (Pharmacy/Treatment Route) repeating</li>
///<li>6: RXC (Pharmacy/Treatment Component Order) optional repeating</li>
///<li>7: RSP_Z82_OBSERVATION (a Group object) repeating</li>
///</ol>
///</summary>
[Serializable]
public class RSP_Z82_COMMON_ORDER : AbstractGroup {
///<summary>
/// Creates a new RSP_Z82_COMMON_ORDER Group.
///</summary>
public RSP_Z82_COMMON_ORDER(IGroup parent, IModelClassFactory factory) : base(parent, factory){
try {
this.add(typeof(ORC), true, false);
this.add(typeof(RSP_Z82_TIMING), true, false);
this.add(typeof(RSP_Z82_ORDER_DETAIL), false, false);
this.add(typeof(RSP_Z82_ENCODED_ORDER), false, false);
this.add(typeof(RXD), true, false);
this.add(typeof(RXR), true, true);
this.add(typeof(RXC), false, true);
this.add(typeof(RSP_Z82_OBSERVATION), true, true);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error creating RSP_Z82_COMMON_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 RSP_Z82_TIMING (a Group object) - creates it if necessary
///</summary>
public RSP_Z82_TIMING TIMING {
get{
RSP_Z82_TIMING ret = null;
try {
ret = (RSP_Z82_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 RSP_Z82_ORDER_DETAIL (a Group object) - creates it if necessary
///</summary>
public RSP_Z82_ORDER_DETAIL ORDER_DETAIL {
get{
RSP_Z82_ORDER_DETAIL ret = null;
try {
ret = (RSP_Z82_ORDER_DETAIL)this.GetStructure("ORDER_DETAIL");
} 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 RSP_Z82_ENCODED_ORDER (a Group object) - creates it if necessary
///</summary>
public RSP_Z82_ENCODED_ORDER ENCODED_ORDER {
get{
RSP_Z82_ENCODED_ORDER ret = null;
try {
ret = (RSP_Z82_ENCODED_ORDER)this.GetStructure("ENCODED_ORDER");
} 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 RXD (Pharmacy/Treatment Dispense) - creates it if necessary
///</summary>
public RXD RXD {
get{
RXD ret = null;
try {
ret = (RXD)this.GetStructure("RXD");
} 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 RXR (Pharmacy/Treatment Route) - creates it if necessary
///</summary>
public RXR GetRXR() {
RXR ret = null;
try {
ret = (RXR)this.GetStructure("RXR");
} 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 RXR
/// * (Pharmacy/Treatment Route) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public RXR GetRXR(int rep) {
return (RXR)this.GetStructure("RXR", rep);
}
/**
* Returns the number of existing repetitions of RXR
*/
public int RXRRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("RXR").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 RXC (Pharmacy/Treatment Component Order) - creates it if necessary
///</summary>
public RXC GetRXC() {
RXC ret = null;
try {
ret = (RXC)this.GetStructure("RXC");
} 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 RXC
/// * (Pharmacy/Treatment Component Order) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public RXC GetRXC(int rep) {
return (RXC)this.GetStructure("RXC", rep);
}
/**
* Returns the number of existing repetitions of RXC
*/
public int RXCRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("RXC").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 RSP_Z82_OBSERVATION (a Group object) - creates it if necessary
///</summary>
public RSP_Z82_OBSERVATION GetOBSERVATION() {
RSP_Z82_OBSERVATION ret = null;
try {
ret = (RSP_Z82_OBSERVATION)this.GetStructure("OBSERVATION");
} 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 RSP_Z82_OBSERVATION
/// * (a Group object) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public RSP_Z82_OBSERVATION GetOBSERVATION(int rep) {
return (RSP_Z82_OBSERVATION)this.GetStructure("OBSERVATION", rep);
}
/**
* Returns the number of existing repetitions of RSP_Z82_OBSERVATION
*/
public int OBSERVATIONRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("OBSERVATION").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;
}
}
}
}
|