• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# parser.NuGenModelClassFactory类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中Genetibase.NuGenHL7.parser.NuGenModelClassFactory的典型用法代码示例。如果您正苦于以下问题:C# Genetibase.NuGenHL7.parser.NuGenModelClassFactory类的具体用法?C# Genetibase.NuGenHL7.parser.NuGenModelClassFactory怎么用?C# Genetibase.NuGenHL7.parser.NuGenModelClassFactory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Genetibase.NuGenHL7.parser.NuGenModelClassFactory类属于命名空间,在下文中一共展示了Genetibase.NuGenHL7.parser.NuGenModelClassFactory类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: QBP_Q13_QBP

		/// <summary> Creates a new QBP_Q13_QBP Group.</summary>
		public QBP_Q13_QBP(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(Zxx), false, false);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:11,代码来源:QBP_Q13_QBP.cs


示例2: ORL_O36_RESPONSE

		/// <summary> Creates a new ORL_O36_RESPONSE Group.</summary>
		public ORL_O36_RESPONSE(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(ORL_O36_PATIENT), false, false);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:11,代码来源:ORL_O36_RESPONSE.cs


示例3: ORL_O36_OBSERVATION_REQUEST

		/// <summary> Creates a new ORL_O36_OBSERVATION_REQUEST Group.</summary>
		public ORL_O36_OBSERVATION_REQUEST(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(OBR), true, false);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:11,代码来源:ORL_O36_OBSERVATION_REQUEST.cs


示例4: RSP_K23_QUERY_RESPONSE

		/// <summary> Creates a new RSP_K23_QUERY_RESPONSE Group.</summary>
		public RSP_K23_QUERY_RESPONSE(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(PID), true, false);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:11,代码来源:RSP_K23_QUERY_RESPONSE.cs


示例5: AbstractSegment

		//private Message message;
		//private String name;
		
		/// <summary> Calls the abstract init() method to create the fields in this segment.
		/// 
		/// </summary>
		/// <param name="parent">parent group
		/// </param>
		/// <param name="factory">all implementors need a model class factory to find datatype classes, so we 
		/// include it as an arg here to emphasize that fact ... AbstractSegment doesn't actually 
		/// use it though
		/// </param>
		public AbstractSegment(Group parent, ModelClassFactory factory)
		{
			this.parent = parent;
			this.fields = new System.Collections.ArrayList();
			this.types = new System.Collections.ArrayList();
			this.required = new System.Collections.ArrayList();
			this.length = new System.Collections.ArrayList();
			this.args = new System.Collections.ArrayList();
			this.maxReps = new System.Collections.ArrayList();
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:22,代码来源:AbstractSegment.cs


示例6: RDO_O01_OBXNTE

		/// <summary> Creates a new RDO_O01_OBXNTE Group.</summary>
		public RDO_O01_OBXNTE(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(OBX), true, false);
				this.add(typeof(NTE), false, true);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:RDO_O01_OBXNTE.cs


示例7: RRI_I12_AUTHORIZATION_CONTACT

		/// <summary> Creates a new RRI_I12_AUTHORIZATION_CONTACT Group.</summary>
		public RRI_I12_AUTHORIZATION_CONTACT(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(AUT), true, false);
				this.add(typeof(CTD), false, false);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:RRI_I12_AUTHORIZATION_CONTACT.cs


示例8: PTR_PCF_PATHWAY_ROLE

		/// <summary> Creates a new PTR_PCF_PATHWAY_ROLE Group.</summary>
		public PTR_PCF_PATHWAY_ROLE(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(ROL), true, false);
				this.add(typeof(VAR), false, true);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:PTR_PCF_PATHWAY_ROLE.cs


示例9: RSP_Z88_QUERY_RESPONSE

		/// <summary> Creates a new RSP_Z88_QUERY_RESPONSE Group.</summary>
		public RSP_Z88_QUERY_RESPONSE(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(RSP_Z88_PATIENT), false, false);
				this.add(typeof(RSP_Z88_COMMON_ORDER), true, true);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:RSP_Z88_QUERY_RESPONSE.cs


示例10: MFN_M10_MF_TEST_BATT_DETAIL

		/// <summary> Creates a new MFN_M10_MF_TEST_BATT_DETAIL Group.</summary>
		public MFN_M10_MF_TEST_BATT_DETAIL(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(OM5), true, false);
				this.add(typeof(OM4), false, true);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:MFN_M10_MF_TEST_BATT_DETAIL.cs


示例11: OMD_O03_PATIENT_VISIT

		/// <summary> Creates a new OMD_O03_PATIENT_VISIT Group.</summary>
		public OMD_O03_PATIENT_VISIT(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(PV1), true, false);
				this.add(typeof(PV2), false, false);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:OMD_O03_PATIENT_VISIT.cs


示例12: DFT_P11_FINANCIAL_PROCEDURE

		/// <summary> Creates a new DFT_P11_FINANCIAL_PROCEDURE Group.</summary>
		public DFT_P11_FINANCIAL_PROCEDURE(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(PR1), true, false);
				this.add(typeof(ROL), false, true);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:DFT_P11_FINANCIAL_PROCEDURE.cs


示例13: RQI_I01_PROVIDER

		/// <summary> Creates a new RQI_I01_PROVIDER Group.</summary>
		public RQI_I01_PROVIDER(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(PRD), true, false);
				this.add(typeof(CTD), false, true);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:RQI_I01_PROVIDER.cs


示例14: RSP_K31_TIMING_ENCODED

		/// <summary> Creates a new RSP_K31_TIMING_ENCODED Group.</summary>
		public RSP_K31_TIMING_ENCODED(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(TQ1), true, false);
				this.add(typeof(TQ2), false, true);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:RSP_K31_TIMING_ENCODED.cs


示例15: MFN_M11_MF_TEST_CALC_DETAIL

		/// <summary> Creates a new MFN_M11_MF_TEST_CALC_DETAIL Group.</summary>
		public MFN_M11_MF_TEST_CALC_DETAIL(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(OM6), true, false);
				this.add(typeof(OM2), true, false);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:MFN_M11_MF_TEST_CALC_DETAIL.cs


示例16: REF_I12_PV1PV2

		/// <summary> Creates a new REF_I12_PV1PV2 Group.</summary>
		public REF_I12_PV1PV2(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(PV1), true, false);
				this.add(typeof(PV2), false, false);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:REF_I12_PV1PV2.cs


示例17: MFR_M01_MF_QUERY

		/// <summary> Creates a new MFR_M01_MF_QUERY Group.</summary>
		public MFR_M01_MF_QUERY(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(MFE), true, false);
				this.add(typeof(Zxx), false, false);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:MFR_M01_MF_QUERY.cs


示例18: RSP_Z82_VISIT

		/// <summary> Creates a new RSP_Z82_VISIT Group.</summary>
		public RSP_Z82_VISIT(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(AL1), true, true);
				this.add(typeof(RSP_Z82_PATIENT_VISIT), false, false);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:RSP_Z82_VISIT.cs


示例19: RRG_O16_PATIENT

		/// <summary> Creates a new RRG_O16_PATIENT Group.</summary>
		public RRG_O16_PATIENT(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(PID), true, false);
				this.add(typeof(NTE), false, true);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:RRG_O16_PATIENT.cs


示例20: RTB_K13_ROW_DEFINITION

		/// <summary> Creates a new RTB_K13_ROW_DEFINITION Group.</summary>
		public RTB_K13_ROW_DEFINITION(Group parent, ModelClassFactory factory):base(parent, factory)
		{
			try
			{
				this.add(typeof(RDF), true, false);
				this.add(typeof(RDT), false, true);
			}
			catch (NuGenHL7Exception)
			{
			}
		}
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:12,代码来源:RTB_K13_ROW_DEFINITION.cs



注:本文中的Genetibase.NuGenHL7.parser.NuGenModelClassFactory类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Genre类代码示例发布时间:2022-05-24
下一篇:
C# model.Message类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap