Skip to content

Bomberlt/fhir-net-api

This branch is 2848 commits behind FirelyTeam/firely-net-sdk:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e07cbc5 · Apr 14, 2015
Apr 14, 2015
Dec 13, 2013
Jan 7, 2015
Apr 14, 2015
Apr 14, 2015
May 20, 2014
Jul 3, 2014
Nov 29, 2013
Mar 9, 2015

Repository files navigation

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 parcitipate in this project, we're using Git Flow for our branche management, so new development is done on (feature branches from) /develop.

GIT branching strategy

About

The official .NET API for HL7 FHIR

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%