using System;
using NHapi.Base.Log;
using NHapi.Model.V251.Group;
using NHapi.Model.V251.Segment;
using NHapi.Base;
using NHapi.Base.Parser;
using NHapi.Base.Model;
namespace NHapi.Model.V251.Message{
///<summary>
/// Represents a REF_I12 message structure (see chapter 11.5.1). This structure contains the
/// following elements:
///<ol>
///<li>0: MSH (Message Header) </li>
///<li>1: SFT (Software Segment) optional repeating</li>
///<li>2: RF1 (Referral Information) optional </li>
///<li>3: REF_I12_AUTHORIZATION_CONTACT (a Group object) optional </li>
///<li>4: REF_I12_PROVIDER_CONTACT (a Group object) repeating</li>
///<li>5: PID (Patient Identification) </li>
///<li>6: NK1 (Next of Kin / Associated Parties) optional repeating</li>
///<li>7: GT1 (Guarantor) optional repeating</li>
///<li>8: REF_I12_INSURANCE (a Group object) optional repeating</li>
///<li>9: ACC (Accident) optional </li>
///<li>10: DG1 (Diagnosis) optional repeating</li>
///<li>11: DRG (Diagnosis Related Group) optional repeating</li>
///<li>12: AL1 (Patient Allergy Information) optional repeating</li>
///<li>13: REF_I12_PROCEDURE (a Group object) optional repeating</li>
///<li>14: REF_I12_OBSERVATION (a Group object) optional repeating</li>
///<li>15: REF_I12_PATIENT_VISIT (a Group object) optional </li>
///<li>16: NTE (Notes and Comments) optional repeating</li>
///</ol>
///</summary>
[Serializable]
public class REF_I12 : AbstractMessage {
///<summary>
/// Creates a new REF_I12 Group with custom IModelClassFactory.
///</summary>
public REF_I12(IModelClassFactory factory) : base(factory){
init(factory);
}
///<summary>
/// Creates a new REF_I12 Group with DefaultModelClassFactory.
///</summary>
public REF_I12() : base(new DefaultModelClassFactory()) {
init(new DefaultModelClassFactory());
}
///<summary>
/// initalize method for REF_I12. This does the segment setup for the message.
///</summary>
private void init(IModelClassFactory factory) {
try {
this.add(typeof(MSH), true, false);
this.add(typeof(SFT), false, true);
this.add(typeof(RF1), false, false);
this.add(typeof(REF_I12_AUTHORIZATION_CONTACT), false, false);
this.add(typeof(REF_I12_PROVIDER_CONTACT), true, true);
this.add(typeof(PID), true, false);
this.add(typeof(NK1), false, true);
this.add(typeof(GT1), false, true);
this.add(typeof(REF_I12_INSURANCE), false, true);
this.add(typeof(ACC), false, false);
this.add(typeof(DG1), false, true);
this.add(typeof(DRG), false, true);
this.add(typeof(AL1), false, true);
this.add(typeof(REF_I12_PROCEDURE), false, true);
this.add(typeof(REF_I12_OBSERVATION), false, true);
this.add(typeof(REF_I12_PATIENT_VISIT), false, false);
this.add(typeof(NTE), false, true);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error creating REF_I12 - this is probably a bug in the source code generator.", e);
}
}
///<summary>
/// Returns MSH (Message Header) - creates it if necessary
///</summary>
public MSH MSH {
get{
MSH ret = null;
try {
ret = (MSH)this.GetStructure("MSH");
} 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 SFT (Software Segment) - creates it if necessary
///</summary>
public SFT GetSFT() {
SFT ret = null;
try {
ret = (SFT)this.GetStructure("SFT");
} 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 SFT
/// * (Software Segment) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public SFT GetSFT(int rep) {
return (SFT)this.GetStructure("SFT", rep);
}
/**
* Returns the number of existing repetitions of SFT
*/
public int SFTRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("SFT").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 RF1 (Referral Information) - creates it if necessary
///</summary>
public RF1 RF1 {
get{
RF1 ret = null;
try {
ret = (RF1)this.GetStructure("RF1");
} 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 REF_I12_AUTHORIZATION_CONTACT (a Group object) - creates it if necessary
///</summary>
public REF_I12_AUTHORIZATION_CONTACT AUTHORIZATION_CONTACT {
get{
REF_I12_AUTHORIZATION_CONTACT ret = null;
try {
ret = (REF_I12_AUTHORIZATION_CONTACT)this.GetStructure("AUTHORIZATION_CONTACT");
} 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 REF_I12_PROVIDER_CONTACT (a Group object) - creates it if necessary
///</summary>
public REF_I12_PROVIDER_CONTACT GetPROVIDER_CONTACT() {
REF_I12_PROVIDER_CONTACT ret = null;
try {
ret = (REF_I12_PROVIDER_CONTACT)this.GetStructure("PROVIDER_CONTACT");
} 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 REF_I12_PROVIDER_CONTACT
/// * (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 REF_I12_PROVIDER_CONTACT GetPROVIDER_CONTACT(int rep) {
return (REF_I12_PROVIDER_CONTACT)this.GetStructure("PROVIDER_CONTACT", rep);
}
/**
* Returns the number of existing repetitions of REF_I12_PROVIDER_CONTACT
*/
public int PROVIDER_CONTACTRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("PROVIDER_CONTACT").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 PID (Patient Identification) - creates it if necessary
///</summary>
public PID PID {
get{
PID ret = null;
try {
ret = (PID)this.GetStructure("PID");
} 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 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 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 REF_I12_INSURANCE (a Group object) - creates it if necessary
///</summary>
public REF_I12_INSURANCE GetINSURANCE() {
REF_I12_INSURANCE ret = null;
try {
ret = (REF_I12_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 a specific repetition of REF_I12_INSURANCE
/// * (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 REF_I12_INSURANCE GetINSURANCE(int rep) {
return (REF_I12_INSURANCE)this.GetStructure("INSURANCE", rep);
}
/**
* Returns the number of existing repetitions of REF_I12_INSURANCE
*/
public int INSURANCERepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("INSURANCE").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 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 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 first repetition of DRG (Diagnosis Related Group) - creates it if necessary
///</summary>
public DRG GetDRG() {
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 a specific repetition of DRG
/// * (Diagnosis Related Group) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public DRG GetDRG(int rep) {
return (DRG)this.GetStructure("DRG", rep);
}
/**
* Returns the number of existing repetitions of DRG
*/
public int DRGRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("DRG").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 REF_I12_PROCEDURE (a Group object) - creates it if necessary
///</summary>
public REF_I12_PROCEDURE GetPROCEDURE() {
REF_I12_PROCEDURE ret = null;
try {
ret = (REF_I12_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 a specific repetition of REF_I12_PROCEDURE
/// * (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 REF_I12_PROCEDURE GetPROCEDURE(int rep) {
return (REF_I12_PROCEDURE)this.GetStructure("PROCEDURE", rep);
}
/**
* Returns the number of existing repetitions of REF_I12_PROCEDURE
*/
public int PROCEDURERepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("PROCEDURE").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 REF_I12_OBSERVATION (a Group object) - creates it if necessary
///</summary>
public REF_I12_OBSERVATION GetOBSERVATION() {
REF_I12_OBSERVATION ret = null;
try {
ret = (REF_I12_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 REF_I12_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 REF_I12_OBSERVATION GetOBSERVATION(int rep) {
return (REF_I12_OBSERVATION)this.GetStructure("OBSERVATION", rep);
}
/**
* Returns the number of existing repetitions of REF_I12_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;
}
}
///<summary>
/// Returns REF_I12_PATIENT_VISIT (a Group object) - creates it if necessary
///</summary>
public REF_I12_PATIENT_VISIT PATIENT_VISIT
{
get{
REF_I12_PATIENT_VISIT ret = null;
try {
ret = (REF_I12_PATIENT_VISIT)this.GetStructure("PATIENT_VISIT");
} 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 NTE (Notes and Comments) - creates it if necessary
///</summary>
public NTE GetNTE() {
NTE ret = null;
try {
ret = (NTE)this.GetStructure("NTE");
} 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 NTE
/// * (Notes and Comments) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public NTE GetNTE(int rep) {
return (NTE)this.GetStructure("NTE", rep);
}
/**
* Returns the number of existing repetitions of NTE
*/
public int NTERepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("NTE").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;
}
}
}
}
|