Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 1.24 KB

README.md

File metadata and controls

28 lines (20 loc) · 1.24 KB

This is the support API for working with the DSTU version of HL7 FHIR on the Microsoft .NET (dotnet) platform. The API deals with the HTTP and wire format, so you can write code like this to manipulate a patient's data:

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);

This library provides:

  • Class models for working with the FHIR data model using POCO's
  • Xml and Json parsers and serializers
  • A REST client for working with FHIR-compliant servers

Get Started

Get started by reading the online documentation or downloading the NuGet package

If you want to participate in this project, we're using Git Flow for our branch management, so new development is done on (feature branches from) /develop.

GIT branching strategy