DFT_P11.cs :  » Network-Clients » nHapi » NHapi » Model » V251 » Message » 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 » Message » DFT_P11.cs
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 DFT_P11 message structure (see chapter 6.4.8). This structure contains the 
/// following elements:
///<ol>
///<li>0: MSH (Message Header) </li>
///<li>1: SFT (Software Segment) optional repeating</li>
///<li>2: EVN (Event Type) </li>
///<li>3: PID (Patient Identification) </li>
///<li>4: PD1 (Patient Additional Demographic) optional </li>
///<li>5: ROL (Role) optional repeating</li>
///<li>6: PV1 (Patient Visit) optional </li>
///<li>7: PV2 (Patient Visit - Additional Information) optional </li>
///<li>8: ROL (Role) optional repeating</li>
///<li>9: DB1 (Disability) optional repeating</li>
///<li>10: DFT_P11_COMMON_ORDER (a Group object) </li>
///<li>11: DG1 (Diagnosis) optional repeating</li>
///<li>12: DRG (Diagnosis Related Group) optional </li>
///<li>13: GT1 (Guarantor) optional repeating</li>
///<li>14: DFT_P11_INSURANCE (a Group object) </li>
///<li>15: ACC (Accident) optional </li>
///<li>16: DFT_P11_FINANCIAL (a Group object) repeating</li>
///</ol>
///</summary>
[Serializable]
public class DFT_P11 : AbstractMessage  {

  ///<summary> 
  /// Creates a new DFT_P11 Group with custom IModelClassFactory.
  ///</summary>
  public DFT_P11(IModelClassFactory factory) : base(factory){
     init(factory);
  }

  ///<summary>
  /// Creates a new DFT_P11 Group with DefaultModelClassFactory. 
  ///</summary> 
  public DFT_P11() : base(new DefaultModelClassFactory()) { 
     init(new DefaultModelClassFactory());
  }

  ///<summary>
  /// initalize method for DFT_P11.  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(EVN), true, false);
        this.add(typeof(PID), true, false);
        this.add(typeof(PD1), false, false);
        this.add(typeof(ROL), false, true);
        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(DFT_P11_COMMON_ORDER), true, false);
        this.add(typeof(DG1), false, true);
        this.add(typeof(DRG), false, false);
        this.add(typeof(GT1), false, true);
        this.add(typeof(DFT_P11_INSURANCE), true, false);
        this.add(typeof(ACC), false, false);
        this.add(typeof(DFT_P11_FINANCIAL), true, true);
     } catch(HL7Exception e) {
        HapiLogFactory.getHapiLog(GetType()).error("Unexpected error creating DFT_P11 - 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 EVN (Event Type) - creates it if necessary
  ///</summary>
  public EVN EVN { 
get{
     EVN ret = null;
     try {
        ret = (EVN)this.GetStructure("EVN");
     } 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 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 PD1 (Patient Additional Demographic) - creates it if necessary
  ///</summary>
  public PD1 PD1 { 
get{
     PD1 ret = null;
     try {
        ret = (PD1)this.GetStructure("PD1");
     } 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 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 ROL2 (Role) - creates it if necessary
  ///</summary>
  public ROL GetROL2() {
     ROL ret = null;
     try {
        ret = (ROL)this.GetStructure("ROL2");
     } 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 ROL2
  /// * (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 GetROL2(int rep) { 
     return (ROL)this.GetStructure("ROL2", rep);
  }

  /** 
   * Returns the number of existing repetitions of ROL2 
   */ 
  public int ROL2RepetitionsUsed { 
get{
      int reps = -1; 
      try { 
          reps = this.GetAll("ROL2").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 DFT_P11_COMMON_ORDER (a Group object) - creates it if necessary
  ///</summary>
  public DFT_P11_COMMON_ORDER COMMON_ORDER { 
get{
     DFT_P11_COMMON_ORDER ret = null;
     try {
        ret = (DFT_P11_COMMON_ORDER)this.GetStructure("COMMON_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  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  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 DFT_P11_INSURANCE (a Group object) - creates it if necessary
  ///</summary>
  public DFT_P11_INSURANCE INSURANCE { 
get{
     DFT_P11_INSURANCE ret = null;
     try {
        ret = (DFT_P11_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  first repetition of DFT_P11_FINANCIAL (a Group object) - creates it if necessary
  ///</summary>
  public DFT_P11_FINANCIAL GetFINANCIAL() {
     DFT_P11_FINANCIAL ret = null;
     try {
        ret = (DFT_P11_FINANCIAL)this.GetStructure("FINANCIAL");
     } 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 DFT_P11_FINANCIAL
  /// * (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 DFT_P11_FINANCIAL GetFINANCIAL(int rep) { 
     return (DFT_P11_FINANCIAL)this.GetStructure("FINANCIAL", rep);
  }

  /** 
   * Returns the number of existing repetitions of DFT_P11_FINANCIAL 
   */ 
  public int FINANCIALRepetitionsUsed { 
get{
      int reps = -1; 
      try { 
          reps = this.GetAll("FINANCIAL").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; 
  }
  } 

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