Example #1
0
 public CompanyService(ApplicationDb dbContext, IBrowsingContextService browsingContextService,
                       IBackgroundTaskQueue <ProductData> taskQueue, ILogger <CompanyService> logger)
 {
     _dbContext = dbContext;
     _browsingContextService = browsingContextService;
     TaskQueue = taskQueue;
     _logger   = logger;
 }
Example #2
0
 public ProductService(ApplicationDb dbContext, IBrowsingContextService browsingContextService)
 {
     _dbContext = dbContext;
     _browsingContextService = browsingContextService;
 }