Skip to content

tamizhvendan/fhirbase-net

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FHIRbase.Net

fhirbase

FHIRbase.Net is simple .NET wrappers for FHIRbase (https://github.com/fhirbase).

FHIRbase is an open source relational storage for FHIR targeting real production.

To install Simple .NET wrappers for FHIRbase, run the following command in the Package Manager Console:

PM> Install-Package Fhirbase.Net -Pre

Example:

var patient = new Patient();
    patient.Name.Add(HumanName.ForFamily("Hello").WithGiven("World"));
    patient.Telecom.Add(new ContactPoint
    {
            System = ContactPoint.ContactPointSystem.Phone, 
            Use = ContactPoint.ContactPointUse.Mobile,
            Value = "123456789"
    });

    var createdPatient = (Patient)FHIRbase.Create(patient);

...

FHIRbase.Delete(createdPatient);

About

.NET wrappers for FHIRbase

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 99.6%
  • Batchfile 0.4%