Exemple #1
0
 public KeyVaultsController(IYResourceClient resourceClient,
                            IYHttpRequestHandler client,
                            IYEngineProvider engineProvider, IOptions <YMicrosoftIdentityOptions> azureAdOptions)
 {
     this.resourceClient = resourceClient;
     this.client         = client;
     this.engineProvider = engineProvider;
     this.options        = azureAdOptions.Value;
 }
 public EnginesController(IYEngineProvider engineProvider,
                          IYEnginesService enginesService,
                          IYNotificationsService notificationsService,
                          IYHangFireService hangFireService,
                          IOptions <YMicrosoftIdentityOptions> options)
 {
     this.engineProvider       = engineProvider;
     this.enginesService       = enginesService;
     this.notificationsService = notificationsService;
     this.hangFireService      = hangFireService;
     this.options = options.Value;
 }
 public AppInsightsController(IYHttpRequestHandler client,
                              IYEngineProvider engineProvider,
                              DataFactoriesController dataFactoriesController,
                              KeyVaultsController keyVaultsController,
                              IOptions <YMicrosoftIdentityOptions> azureAdOptions)
 {
     this.client                  = client;
     this.engineProvider          = engineProvider;
     this.dataFactoriesController = dataFactoriesController;
     this.keyVaultsController     = keyVaultsController;
     this.options                 = azureAdOptions.Value;
 }
 public PurviewController(IYAuthProvider authProvider,
                          IOptions <YMicrosoftIdentityOptions> azureAdOptions,
                          IYHttpRequestHandler client,
                          IOptions <YPurviewOptions> hostOptions,
                          IYEngineProvider engineProvider,
                          DataFactoriesController dataFactoriesController)
 {
     this.authProvider      = authProvider;
     this.options           = azureAdOptions.Value;
     this.client            = client;
     this.hostOptions       = hostOptions.Value;
     this.engineProvider    = engineProvider;
     this.factoryController = dataFactoriesController;
 }
 public DataFactoriesController(IYResourceClient resourceClient,
                                IYHttpRequestHandler client,
                                IYEngineProvider engineProvider,
                                IOptions <YMicrosoftIdentityOptions> azureAdOptions,
                                KeyVaultsController keyVaultsController,
                                IYDataSourcesService dataSourcesService,
                                IYAuthProvider authProvider)
 {
     this.resourceClient      = resourceClient;
     this.client              = client;
     this.engineProvider      = engineProvider;
     this.keyVaultsController = keyVaultsController;
     this.dataSourcesService  = dataSourcesService;
     this.authProvider        = authProvider;
     this.options             = azureAdOptions.Value;
 }