BAR_P05_VISIT.cs :  » Network-Clients » nHapi » NHapi » Model » V251 » Group » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Network Clients » nHapi 
nHapi » NHapi » Model » V251 » Group » BAR_P05_VISIT.cs
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_P05_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_P05_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_P05_INSURANCE (a Group object) </li>
///<li>12: ACC (Accident) optional </li>
///<li>13: UB1 (UB82) optional </li>
///<li>14: UB2 (UB92 Data) optional </li>
///<li>15: ABS (Abstract) optional </li>
///<li>16: BLC (Blood Code) optional repeating</li>
///<li>17: RMI (Risk Management Incident) optional </li>
///</ol>
///</summary>
[Serializable]
public class BAR_P05_VISIT : AbstractGroup {

  ///<summary> 
  /// Creates a new BAR_P05_VISIT Group.
  ///</summary>
  public BAR_P05_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_P05_PROCEDURE), true, false);
        this.add(typeof(GT1), false, true);
        this.add(typeof(NK1), false, true);
        this.add(typeof(BAR_P05_INSURANCE), true, false);
        this.add(typeof(ACC), false, false);
        this.add(typeof(UB1), false, false);
        this.add(typeof(UB2), false, false);
        this.add(typeof(ABS), false, false);
        this.add(typeof(BLC), false, true);
        this.add(typeof(RMI), false, false);
     } catch(HL7Exception e) {
        HapiLogFactory.getHapiLog(GetType()).error("Unexpected error creating BAR_P05_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_P05_PROCEDURE (a Group object) - creates it if necessary
  ///</summary>
  public BAR_P05_PROCEDURE PROCEDURE { 
get{
     BAR_P05_PROCEDURE ret = null;
     try {
        ret = (BAR_P05_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_P05_INSURANCE (a Group object) - creates it if necessary
  ///</summary>
  public BAR_P05_INSURANCE INSURANCE { 
get{
     BAR_P05_INSURANCE ret = null;
     try {
        ret = (BAR_P05_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;
  }
  }

  ///<summary>
  /// Returns ABS (Abstract) - creates it if necessary
  ///</summary>
  public ABS ABS { 
get{
     ABS ret = null;
     try {
        ret = (ABS)this.GetStructure("ABS");
     } 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 BLC (Blood Code) - creates it if necessary
  ///</summary>
  public BLC GetBLC() {
     BLC ret = null;
     try {
        ret = (BLC)this.GetStructure("BLC");
     } 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 BLC
  /// * (Blood Code) - creates it if necessary
  /// throws HL7Exception if the repetition requested is more than one 
  ///     greater than the number of existing repetitions.
  ///</summary>
  public BLC GetBLC(int rep) { 
     return (BLC)this.GetStructure("BLC", rep);
  }

  /** 
   * Returns the number of existing repetitions of BLC 
   */ 
  public int BLCRepetitionsUsed { 
get{
      int reps = -1; 
      try { 
          reps = this.GetAll("BLC").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 RMI (Risk Management Incident) - creates it if necessary
  ///</summary>
  public RMI RMI { 
get{
     RMI ret = null;
     try {
        ret = (RMI)this.GetStructure("RMI");
     } 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;
  }
  }

}
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.