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

C# Model.List类代码示例

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

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



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

示例1: Alert

 public Alert() {
     this.noteField = new @string();
     this.authorField = new Reference();
     this.subjectField = new Reference();
     this.statusField = new AlertStatus();
     this.categoryField = new CodeableConcept();
     this.identifierField = new List<Identifier>();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:8,代码来源:FHIR.Model.cs


示例2: SpecimenTreatment

 public SpecimenTreatment() {
     this.additiveField = new List<Reference>();
     this.procedureField = new CodeableConcept();
     this.descriptionField = new @string();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:5,代码来源:FHIR.Model.cs


示例3: NutritionOrderOralDiet

 public NutritionOrderOralDiet() {
     this.descriptionField = new @string();
     this.fluidConsistencyTypeField = new List<CodeableConcept>();
     this.textureField = new List<NutritionOrderTexture>();
     this.nutrientsField = new List<NutritionOrderNutrients>();
     this.codeField = new List<CodeableConcept>();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:7,代码来源:FHIR.Model.cs


示例4: NutritionOrderEnteralFormula

 public NutritionOrderEnteralFormula() {
     this.baseFormulaNameField = new @string();
     this.rateField = new List<Quantity>();
     this.routeofAdministrationField = new List<CodeableConcept>();
     this.caloricDensityField = new List<Quantity>();
     this.additiveTypeField = new List<CodeableConcept>();
     this.baseFormulaTypeField = new CodeableConcept();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:8,代码来源:FHIR.Model.cs


示例5: OralHealthClaimCoverage

 public OralHealthClaimCoverage() {
     this.originalRulesetField = new Coding();
     this.claimResponseField = new Reference();
     this.preauthrefField = new List<@string>();
     this.relationshipField = new Coding();
     this.businessArrangementField = new @string();
     this.coverageField = new Reference();
     this.focalField = new boolean();
     this.sequenceField = new integer();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:10,代码来源:FHIR.Model.cs


示例6: OralHealthClaimDetail

 public OralHealthClaimDetail() {
     this.subDetailField = new List<OralHealthClaimSubDetail>();
     this.udiField = new Coding();
     this.netField = new Money();
     this.pointsField = new @decimal();
     this.factorField = new @decimal();
     this.unitPriceField = new Money();
     this.quantityField = new Quantity();
     this.serviceField = new Coding();
     this.typeField = new Coding();
     this.sequenceField = new integer();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:12,代码来源:FHIR.Model.cs


示例7: PatientContact

 public PatientContact() {
     this.periodField = new Period();
     this.organizationField = new Reference();
     this.genderField = new AdministrativeGender();
     this.addressField = new Address();
     this.telecomField = new List<ContactPoint>();
     this.nameField = new HumanName();
     this.relationshipField = new List<CodeableConcept>();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:9,代码来源:FHIR.Model.cs


示例8: ElementDefinitionType

 public ElementDefinitionType() {
     this.aggregationField = new List<AggregationMode>();
     this.profileField = new uri();
     this.codeField = new code();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:5,代码来源:FHIR.Model.cs


示例9: QuestionnaireAnswersQuestion

 public QuestionnaireAnswersQuestion() {
     this.groupField = new List<QuestionnaireAnswersGroup>();
     this.answerField = new List<QuestionnaireAnswersAnswer>();
     this.textField = new @string();
     this.linkIdField = new @string();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:6,代码来源:FHIR.Model.cs


示例10: SecurityEventEvent

 public SecurityEventEvent() {
     this.outcomeDescField = new @string();
     this.outcomeField = new SecurityEventOutcome();
     this.dateTimeField = new instant();
     this.actionField = new SecurityEventAction();
     this.subtypeField = new List<CodeableConcept>();
     this.typeField = new CodeableConcept();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:8,代码来源:FHIR.Model.cs


示例11: SecurityEventParticipant

 public SecurityEventParticipant() {
     this.networkField = new SecurityEventNetwork();
     this.mediaField = new Coding();
     this.requestorField = new boolean();
     this.nameField = new @string();
     this.altIdField = new @string();
     this.userIdField = new @string();
     this.referenceField = new Reference();
     this.roleField = new List<CodeableConcept>();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:10,代码来源:FHIR.Model.cs


示例12: SecurityEventSource

 public SecurityEventSource() {
     this.typeField = new List<Coding>();
     this.identifierField = new @string();
     this.siteField = new @string();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:5,代码来源:FHIR.Model.cs


示例13: SecurityEventObject

 public SecurityEventObject() {
     this.detailField = new List<SecurityEventDetail>();
     this.queryField = new base64Binary();
     this.descriptionField = new @string();
     this.nameField = new @string();
     this.sensitivityField = new CodeableConcept();
     this.lifecycleField = new SecurityEventObjectLifecycle();
     this.roleField = new SecurityEventObjectRole();
     this.typeField = new SecurityEventObjectType();
     this.referenceField = new Reference();
     this.identifierField = new Identifier();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:12,代码来源:FHIR.Model.cs


示例14: SpecimenSource

 public SpecimenSource() {
     this.targetField = new List<Reference>();
     this.relationshipField = new HierarchicalRelationshipType();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:4,代码来源:FHIR.Model.cs


示例15: SpecimenCollection

 public SpecimenCollection() {
     this.sourceSiteField = new CodeableConcept();
     this.methodField = new CodeableConcept();
     this.quantityField = new Quantity();
     this.itemField = new Element();
     this.commentField = new List<@string>();
     this.collectorField = new Reference();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:8,代码来源:FHIR.Model.cs


示例16: Address

 public Address() {
     this.periodField = new Period();
     this.countryField = new @string();
     this.postalCodeField = new @string();
     this.stateField = new @string();
     this.cityField = new @string();
     this.lineField = new List<@string>();
     this.textField = new @string();
     this.useField = new AddressUse();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:10,代码来源:FHIR.Model.cs


示例17: ElementDefinitionSlicing

 public ElementDefinitionSlicing() {
     this.rulesField = new SlicingRules();
     this.orderedField = new boolean();
     this.descriptionField = new @string();
     this.discriminatorField = new List<id>();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:6,代码来源:FHIR.Model.cs


示例18: Element

 public Element() {
     this.extensionField = new List<Extension>();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:3,代码来源:FHIR.Model.cs


示例19: PractitionerQualification

 public PractitionerQualification() {
     this.issuerField = new Reference();
     this.periodField = new Period();
     this.codeField = new CodeableConcept();
     this.identifierField = new List<Identifier>();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:6,代码来源:FHIR.Model.cs


示例20: QuestionnaireAnswersGroup

 public QuestionnaireAnswersGroup() {
     this.questionField = new List<QuestionnaireAnswersQuestion>();
     this.groupField = new List<QuestionnaireAnswersGroup>();
     this.subjectField = new Reference();
     this.textField = new @string();
     this.titleField = new @string();
     this.linkIdField = new @string();
 }
开发者ID:GuntherM1466,项目名称:healthedecisions,代码行数:8,代码来源:FHIR.Model.cs



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
C# Bots.CardDB类代码示例发布时间:2022-05-26
下一篇:
C# DataTypes.UnitInfo类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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