コード例 #1
0
ファイル: MaintenanceService.cs プロジェクト: Condeti/spark
 public MaintenanceService(FhirService fhirService, ILocalhost localhost, IGenerator keyGenerator, IFhirStore fhirStore, IFhirIndex fhirIndex)
 {
     this.fhirService = fhirService;
     this.localhost = localhost;
     this.keyGenerator = keyGenerator;
     this.fhirStore = fhirStore;
     this.fhirIndex = fhirIndex;
 }
コード例 #2
0
 public MaintenanceService(Infrastructure infrastructure, FhirService service)
 {
     this.service = service;
     this.localhost = infrastructure.Localhost;
     this.generator = infrastructure.Generator;
     this.store = infrastructure.Store;
     this.index = infrastructure.Index;
 }
コード例 #3
0
ファイル: InitializerHub.cs プロジェクト: Condeti/spark
 public InitializeHub(FhirService fhirService, ILocalhost localhost, IFhirStore fhirStore, IFhirIndex fhirIndex)
 {
     this.localhost = localhost;
     this.fhirService = fhirService;
     this.fhirStore = fhirStore;
     this.fhirIndex = fhirIndex;
     this.resources = null;
 }
コード例 #4
0
ファイル: InitializerHub.cs プロジェクト: raysearchlabs/spark
 public InitializeHub()
 {
     this.localhost = InfrastructureProvider.Mongo.Localhost;
     this.service = InfrastructureProvider.Mongo.CreateService();
     this.store = InfrastructureProvider.Mongo.Store;
     this.index = InfrastructureProvider.Mongo.Index;
     this.resources = null;
 }
コード例 #5
0
ファイル: FhirController.cs プロジェクト: Ravenheart/spark
 public FhirController()
 {
     service = DependencyCoupler.Inject<FhirService>();
 }
コード例 #6
0
ファイル: FhirMaintainance.cs プロジェクト: Ravenheart/spark
 public FhirMaintenanceService(FhirService service)
 {
     this.service = service;
 }
コード例 #7
0
 public FhirController()
 {
     service = Infra.Simple.CreateService();
     engine = new Engine();
 }
コード例 #8
0
ファイル: Factory.cs プロジェクト: TonyAbell/spark
 public static FhirMaintenanceService GetFhirMaintenanceService()
 {
     FhirService service = new FhirService(new Uri(Settings.Endpoint, "maintenance")); // example: http://spark.furore.com/maintenance/
     return new FhirMaintenanceService(service);
 }
コード例 #9
0
ファイル: FhirController.cs プロジェクト: Condeti/spark
 public FhirController(FhirService fhirService)
 {
     // This will be a (injected) constructor parameter in ASP.vNext.
     _fhirService = fhirService;
 }
コード例 #10
0
ファイル: TestBatchHandling.cs プロジェクト: TonyAbell/spark
        public void DoExampleInitialize()
        {
            var service = new FhirService(new Uri("http://localhost"));

            service.Initialize();
        }
コード例 #11
0
 public FhirMaintainanceService(FhirService service)
 {
     this._service = service;
 }
コード例 #12
0
ファイル: FhirMaintainance.cs プロジェクト: schellack/spark
 public FhirMaintenanceService(FhirService service)
 {
     this.service = service;
 }