예제 #1
0
        public static async void PostEncounter(Bundle bundle)
        {
            var client = new FhirClient("https://pyrowebapi.azurewebsites.net/fhir"); // Live

            client = new FhirClient("http://localhost:8888/fhir");
            //  client.

            var returnValue = await client.executeAsync <Hl7.Fhir.Model.Bundle>(bundle, System.Net.HttpStatusCode.OK);

            //return new Bundle();
        }