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 BAR_P01_VISIT 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: PV1 (Patient Visit) optional </li>
///<li>1: PV2 (Patient Visit - Additional Information) optional </li>
///<li>2: ROL (Role) optional repeating</li>
///<li>3: DB1 (Disability) optional repeating</li>
///<li>4: OBX (Observation/Result) optional repeating</li>
///<li>5: AL1 (Patient Allergy Information) optional repeating</li>
///<li>6: DG1 (Diagnosis) optional repeating</li>
///<li>7: DRG (Diagnosis Related Group) optional </li>
///<li>8: BAR_P01_PROCEDURE (a Group object) </li>
///<li>9: GT1 (Guarantor) optional repeating</li>
///<li>10: NK1 (Next of Kin / Associated Parties) optional repeating</li>
///<li>11: BAR_P01_INSURANCE (a Group object) </li>
///<li>12: ACC (Accident) optional </li>
///<li>13: UB1 (UB82) optional </li>
///<li>14: UB2 (UB92 Data) optional </li>
///</ol>
///</summary>
[Serializable]
public class BAR_P01_VISIT : AbstractGroup {
///<summary>
/// Creates a new BAR_P01_VISIT Group.
///</summary>
public BAR_P01_VISIT(IGroup parent, IModelClassFactory factory) : base(parent, factory){
try {
this.add(typeof(PV1), false, false);
this.add(typeof(PV2), false, false);
this.add(typeof(ROL), false, true);
this.add(typeof(DB1), false, true);
this.add(typeof(OBX), false, true);
this.add(typeof(AL1), false, true);
this.add(typeof(DG1), false, true);
this.add(typeof(DRG), false, false);
this.add(typeof(BAR_P01_PROCEDURE), true, false);
this.add(typeof(GT1), false, true);
this.add(typeof(NK1), false, true);
this.add(typeof(BAR_P01_INSURANCE), true, false);
this.add(typeof(ACC), false, false);
this.add(typeof(UB1), false, false);
this.add(typeof(UB2), false, false);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error creating BAR_P01_VISIT - this is probably a bug in the source code generator.", e);
}
}
///<summary>
/// Returns PV1 (Patient Visit) - creates it if necessary
///</summary>
public PV1 PV1 {
get{
PV1 ret = null;
try {
ret = (PV1)this.GetStructure("PV1");
} 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 PV2 (Patient Visit - Additional Information) - creates it if necessary
///</summary>
public PV2 PV2 {
get{
PV2 ret = null;
try {
ret = (PV2)this.GetStructure("PV2");
} 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 ROL (Role) - creates it if necessary
///</summary>
public ROL GetROL() {
ROL ret = null;
try {
ret = (ROL)this.GetStructure("ROL");
} 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 ROL
/// * (Role) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public ROL GetROL(int rep) {
return (ROL)this.GetStructure("ROL", rep);
}
/**
* Returns the number of existing repetitions of ROL
*/
public int ROLRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("ROL").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 DB1 (Disability) - creates it if necessary
///</summary>
public DB1 GetDB1() {
DB1 ret = null;
try {
ret = (DB1)this.GetStructure("DB1");
} 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 DB1
/// * (Disability) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public DB1 GetDB1(int rep) {
return (DB1)this.GetStructure("DB1", rep);
}
/**
* Returns the number of existing repetitions of DB1
*/
public int DB1RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("DB1").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 OBX (Observation/Result) - creates it if necessary
///</summary>
public OBX GetOBX() {
OBX ret = null;
try {
ret = (OBX)this.GetStructure("OBX");
} 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 OBX
/// * (Observation/Result) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public OBX GetOBX(int rep) {
return (OBX)this.GetStructure("OBX", rep);
}
/**
* Returns the number of existing repetitions of OBX
*/
public int OBXRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("OBX").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 AL1 (Patient Allergy Information) - creates it if necessary
///</summary>
public AL1 GetAL1() {
AL1 ret = null;
try {
ret = (AL1)this.GetStructure("AL1");
} 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 AL1
/// * (Patient Allergy Information) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public AL1 GetAL1(int rep) {
return (AL1)this.GetStructure("AL1", rep);
}
/**
* Returns the number of existing repetitions of AL1
*/
public int AL1RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("AL1").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 DG1 (Diagnosis) - creates it if necessary
///</summary>
public DG1 GetDG1() {
DG1 ret = null;
try {
ret = (DG1)this.GetStructure("DG1");
} 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 DG1
/// * (Diagnosis) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public DG1 GetDG1(int rep) {
return (DG1)this.GetStructure("DG1", rep);
}
/**
* Returns the number of existing repetitions of DG1
*/
public int DG1RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("DG1").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 DRG (Diagnosis Related Group) - creates it if necessary
///</summary>
public DRG DRG {
get{
DRG ret = null;
try {
ret = (DRG)this.GetStructure("DRG");
} 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 BAR_P01_PROCEDURE (a Group object) - creates it if necessary
///</summary>
public BAR_P01_PROCEDURE PROCEDURE {
get{
BAR_P01_PROCEDURE ret = null;
try {
ret = (BAR_P01_PROCEDURE)this.GetStructure("PROCEDURE");
} 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 GT1 (Guarantor) - creates it if necessary
///</summary>
public GT1 GetGT1() {
GT1 ret = null;
try {
ret = (GT1)this.GetStructure("GT1");
} 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 GT1
/// * (Guarantor) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public GT1 GetGT1(int rep) {
return (GT1)this.GetStructure("GT1", rep);
}
/**
* Returns the number of existing repetitions of GT1
*/
public int GT1RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("GT1").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 NK1 (Next of Kin / Associated Parties) - creates it if necessary
///</summary>
public NK1 GetNK1() {
NK1 ret = null;
try {
ret = (NK1)this.GetStructure("NK1");
} 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 NK1
/// * (Next of Kin / Associated Parties) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public NK1 GetNK1(int rep) {
return (NK1)this.GetStructure("NK1", rep);
}
/**
* Returns the number of existing repetitions of NK1
*/
public int NK1RepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("NK1").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 BAR_P01_INSURANCE (a Group object) - creates it if necessary
///</summary>
public BAR_P01_INSURANCE INSURANCE {
get{
BAR_P01_INSURANCE ret = null;
try {
ret = (BAR_P01_INSURANCE)this.GetStructure("INSURANCE");
} 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 ACC (Accident) - creates it if necessary
///</summary>
public ACC ACC {
get{
ACC ret = null;
try {
ret = (ACC)this.GetStructure("ACC");
} 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 UB1 (UB82) - creates it if necessary
///</summary>
public UB1 UB1 {
get{
UB1 ret = null;
try {
ret = (UB1)this.GetStructure("UB1");
} 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 UB2 (UB92 Data) - creates it if necessary
///</summary>
public UB2 UB2 {
get{
UB2 ret = null;
try {
ret = (UB2)this.GetStructure("UB2");
} 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;
}
}
}
}
|