FHIR上的样本工作代码

FHIR上的样本工作代码

本文介绍了需要HL7 FHIR上的样本工作代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是HL7 FHIR的新手,请提供HL7 FHIR的样本工作代码



我的尝试:



我还没有在HL7上找到任何样本工作代码FHIR

Iam new to HL7 FHIR, please provide the sample working Code on HL7 FHIR

What I have tried:

I have not found any sample working code on HL7 FHIR

推荐答案

var client = new FhirClient("http://spark.furore.com/fhir");

var pat = client.Read<Patient>("Patient/1");
pat.Resource.Name.Add(HumanName.ForFamily("Kramer")
     .WithGiven("Ewout"));

client.Update<Patient>(pat);



这篇关于需要HL7 FHIR上的样本工作代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 04:07