示例#1
0
 public ApiService(AzureClient azure, FsService fs, CertService certs, AppSettings settings, CustomBasicAuthProvider authProvider, LoggingService log)
 {
     _azure = azure.GetRoot();
     _fs = fs;
     _certs = certs;
     _settings = settings;
     _authProvider = authProvider;
     _log = log;
 }
示例#2
0
 public ApiService(IAzureClient azureClient, IFileSystem fs, ICertificateService certs, ISimpleCredentialStore credentialStore, 
     LoggingService log, JobScheduler jobScheduler, SigningJobCreator jobCreator)
 {
     _azure = azureClient.GetRoot();
     _azureClient = azureClient;
     _credentialStore = credentialStore;
     _log = log;
     _jobScheduler = jobScheduler;
     _jobCreator = jobCreator;
 }
 public SigningJobCreator(IAzureClient azureClient, LoggingService log, ICertificateService certs)
 {
     _azureClient = azureClient;
     _log = log;
     _certs = certs;
 }
 public CustomBasicAuthProvider(AppHost hostBase, AppSettings settings, LoggingService log)
 {
     _hostBase = hostBase;
         _settings = settings;
         _log = log;
 }