Exemplo n.º 1
0
 public DeviceImportJob(
     ILoggerFactory log,
     IVendorClient vendorClient)
 {
     this.log          = log.CreateLogger <DeviceImportJob>();
     this.vendorClient = vendorClient;
 }
Exemplo n.º 2
0
 public AccountDeletionJob(
     ILoggerFactory log,
     IExceptionFilter exceptionFilter,
     IFhirClient fhirClient,
     IConsentStore consentStore,
     IVendorClient vendorClient)
 {
     this.log             = log.CreateLogger <AccountDeletionJob>();
     this.exceptionFilter = exceptionFilter;
     this.fhirClient      = fhirClient;
     this.consentStore    = consentStore;
     this.vendorClient    = vendorClient;
 }
Exemplo n.º 3
0
 public UserEndpoint(
     ILoggerFactory log,
     IExceptionFilter exceptionFilter,
     IAuthentication auth,
     IConsentStore consentStore,
     IVendorClient vendorClient,
     IFhirClient fhirClient,
     IUserFactory userFactory,
     IGuidFactory guidFactory)
 {
     this.log             = log.CreateLogger <UserEndpoint>();
     this.exceptionFilter = exceptionFilter;
     this.auth            = auth;
     this.consentStore    = consentStore;
     this.vendorClient    = vendorClient;
     this.fhirClient      = fhirClient;
     this.userFactory     = userFactory;
     this.guidFactory     = guidFactory;
 }
Exemplo n.º 4
0
 public Apis(
     ILoggerFactory log,
     IExceptionFilter exceptionFilter,
     IAuthentication auth,
     IConsentStore consentStore,
     IQueue queue,
     IUserFactory userFactory,
     IVendorClient vendorClient,
     IWithingsClient withingsClient,
     IWithingsToFhirConverter withingsToFhirConverter)
 {
     this.log                     = log.CreateLogger <Apis>();
     this.queue                   = queue;
     this.userFactory             = userFactory;
     this.vendorClient            = vendorClient;
     this.withingsClient          = withingsClient;
     this.withingsToFhirConverter = withingsToFhirConverter;
     this.exceptionFilter         = exceptionFilter;
     this.auth                    = auth;
     this.consentStore            = consentStore;
 }
Exemplo n.º 5
0
 public UserFactory(ILoggerFactory log, IVendorClient vendorClient)
 {
     this.log          = log.CreateLogger <UserFactory>();
     this.vendorClient = vendorClient;
 }