-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
Harald Sømnes Hanssen edited this page Mar 15, 2019
·
2 revisions
Name of the library | Explaination |
---|---|
FhirStarter.R4.Detonator.Core | The Detonator project is the main library. It is the core library which 99% of the logic lies in. |
FhirStarter.R4.Instigator.Core | The Instigator project contains the logic necessary to get an FHIR server up and running |
A FhirStarter service is ased on the IFhirService interface. It contains all the necessary methods which the FhirController needs to access when receiving a request.
The FhirController is using dependency injection to access the services. The necessary dependencies are setup in the Startup.cs of your Web Service project. The FhirController also assumes logging is setup in the Program.cs file in your web project.
Note: You can only have one service representing a FHIR resource in a FhirStarter server, in other words you can have as many different Resources as you want, but they have to be unique.