Hi,
I working on FHIR with .Net...
Currently I am at the stage where I created Vonk FHIR server on my local machine..
In my .Net application I added Hl7.Fhir.STU3 package using Nuget
Also I created sample patient profile using FhirClient by mentioning end point there as my local FHIR server machine URL(http://localhost:4080/). Code Ex:-
var client = new FhirClient(endpoint);
client.PreferredFormat = ResourceFormat.Json;
var pat = new Hl7.Fhir.Model.Patient();
pat.Id = "1234567890";
pat.Name.Add(HumanName.ForFamily("Mackie").WithGiven("Archibald"));
var patEntry = client.Create(pat);
Now in ClinFHIR in my local machine I added my local vonk FHIR server and there I am able to fetch my patient profile using searching.
My question & quires are :-
1:- Suppose any one else want to create a new sample patient in ClinFHIR how that should be done.
2:- also how can I make the vonk server as public.
3:- I also want to use sql sb.
help is greatly appreciated.