public ReportController(UserManager <User> userManager, IReportService reportService, ICloudinaryService cloudinaryService, ISpiderService spiderService)
 {
     _userManager       = userManager;
     _reportService     = reportService;
     _cloudinaryService = cloudinaryService;
     _spiderService     = spiderService;
 }
 public SpiderController(ISpiderService spiderService, IAnimalTaxonomyService animalTaxonomyService,
                         ICloudinaryService cloudinaryService)
 {
     _spiderService         = spiderService;
     _animalTaxonomyService = animalTaxonomyService;
     _cloudinaryService     = cloudinaryService;
 }
Example #3
0
        public SpiderManager(ILogger <SpiderService> logger, ISpiderService spider)
        {
            this.logger = logger;
            this.spider = spider;

            pagesCrawled = new ConcurrentDictionary <string, PageDto>();
            pagesToCrawl = new ConcurrentQueue <Page>();
        }
 public SpiderTaskController(
     ISpiderService spiderService,
     IHangFireService hangFireService,
     SpiderManager spiderManager)
 {
     _spiderService   = spiderService;
     _hangFireService = hangFireService;
     _spiderManager   = spiderManager;
 }
Example #5
0
 public SampleDataController(ISpiderService spiderService)
 {
     this.spiderService = spiderService;
 }
 public SpiderTaskController(
     ISpiderService spiderService
     )
 {
     _spiderService = spiderService;
 }