Exemple #1
0
 public AccountService(IConfiguration configuration, ILogger <AccountService> logger, IApiHelperService apiHelperService)
 {
     this.configuration    = configuration;
     this._logger          = logger;
     this.apiHelperService = apiHelperService;
 }
Exemple #2
0
 public ExternalMovieService(IApiUtilityService apiUtilityService, IApiHelperService apiHelpService)
 {
     _apiHelpService = apiHelpService;
 }
Exemple #3
0
 public MQConsumerOperationController(ILifetimeScope autofac, ILogger <MQConsumerOperationController> logger, IApiHelperService apiHelperService, IConfiguration configuration)
 {
     _autofac           = autofac;
     _logger            = logger;
     _apiHelperService  = apiHelperService;
     this.configuration = configuration;
 }
 public MonitorService(IConfiguration configuration, ILogger <PictureService> _logger, IApiHelperService apiHelperService)
 {
     this.configuration    = configuration;
     this._logger          = _logger;
     this.apiHelperService = apiHelperService;
 }