Exemplo n.º 1
0
 public MethodCache(IDistributedCache IDistributedCache,
                    IMethodRepository IMethodRepository,
                    IFhirServerConfig IFhirServerConfig)
 {
     this.IDistributedCache = IDistributedCache;
     this.IMethodRepository = IMethodRepository;
     this.IFhirServerConfig = IFhirServerConfig;
 }
Exemplo n.º 2
0
 public HttpStatusCodeCache(IDistributedCache IDistributedCache,
                            IHttpStatusCodeRepository IHttpStatusCodeRepository,
                            IFhirServerConfig IFhirServerConfig)
 {
     this.IDistributedCache         = IDistributedCache;
     this.IHttpStatusCodeRepository = IHttpStatusCodeRepository;
     this.IFhirServerConfig         = IFhirServerConfig;
 }
Exemplo n.º 3
0
 public FhirVersionCache(IDistributedCache IDistributedCache,
                         IFhirVersionRepository IFhirVersionRepository,
                         IFhirServerConfig IFhirServerConfig)
 {
     this.IDistributedCache      = IDistributedCache;
     this.IFhirVersionRepository = IFhirVersionRepository;
     this.IFhirServerConfig      = IFhirServerConfig;
 }
Exemplo n.º 4
0
 public SearchParameterCache(IDistributedCache IDistributedCache,
                             ISearchParameterRepository ISearchParameterRepository,
                             IFhirServerConfig IFhirServerConfig)
 {
     this.IDistributedCache          = IDistributedCache;
     this.ISearchParameterRepository = ISearchParameterRepository;
     this.IFhirServerConfig          = IFhirServerConfig;
 }
Exemplo n.º 5
0
 public ServerDateTimeSupport(IServerDefaultTimeZoneTimeSpan IServerDefaultTimeZoneTimeSpan, IFhirServerConfig IFhirServerConfig)
 {
     this.IServerDefaultTimeZoneTimeSpan = IServerDefaultTimeZoneTimeSpan;
 }
Exemplo n.º 6
0
 public ServiceBaseUrlConfig(IFhirServerConfig IFhirServerConfig)
 {
     this.IFhirServerConfig = IFhirServerConfig;
 }