public PatientSteps(HttpSteps httpSteps, HttpContext httpContext, BundleSteps bundleSteps, JwtSteps jwtSteps, HttpRequestConfigurationSteps httpRequestConfigurationSteps, IFhirResourceRepository fhirResourceRepository) : base(httpSteps)
 {
     _httpContext = httpContext;
     _bundleSteps = bundleSteps;
     _jwtSteps    = jwtSteps;
     _httpRequestConfigurationSteps = httpRequestConfigurationSteps;
     _fhirResourceRepository        = fhirResourceRepository;
 }
Beispiel #2
0
 public OrganizationSteps(HttpSteps httpSteps, HttpContext httpContext, BundleSteps bundleSteps, HttpResponseSteps httpResponseSteps, IFhirResourceRepository fhirResourceRepository, JwtSteps jwtSteps) : base(httpSteps)
 {
     _httpContext            = httpContext;
     _bundleSteps            = bundleSteps;
     _httpResponseSteps      = httpResponseSteps;
     _fhirResourceRepository = fhirResourceRepository;
     _jwtSteps = jwtSteps;
 }
 public CompositionSteps(HttpSteps httpSteps, HttpContext httpContext, BundleSteps bundleSteps)
     : base(httpSteps)
 {
     _httpContext = httpContext;
     _bundleSteps = bundleSteps;
 }