public JobFactoryService(ConfigService configService, RuriLibSettingsService settingsService, PluginRepository pluginRepo, IHitRepository hitRepo, ProxySourceFactoryService proxySourceFactory, DataPoolFactoryService dataPoolFactory, ProxyReloadService proxyReloadService, IRandomUAProvider randomUAProvider, IRNGProvider rngProvider, IJobLogger logger, IProxyRepository proxyRepo) { this.configService = configService; this.settingsService = settingsService; this.pluginRepo = pluginRepo; this.hitRepo = hitRepo; this.proxySourceFactory = proxySourceFactory; this.dataPoolFactory = dataPoolFactory; this.proxyReloadService = proxyReloadService; this.randomUAProvider = randomUAProvider; this.rngProvider = rngProvider; this.logger = logger; this.proxyRepo = proxyRepo; }
public HitService(IHitRepository repository, IDragonRepository dragonRepository, IHeroRepository heroRepository, IDataAdapter dataAdapter) : base(repository, dataAdapter) { _dragonRepository = dragonRepository; _heroRepository = heroRepository; }
public UtmController(IHitRepository hitRepository) { _hitRepository = hitRepository; Max = int.Parse(ConfigurationManager.AppSettings["MaxResults"]); }
public HitOutputFactory(IHitRepository hitRepo) { this.hitRepo = hitRepo; }
public HitStorageService(IHitRepository hitRepo) { this.hitRepo = hitRepo; semaphore = new SemaphoreSlim(1, 1); }
public LawController() { _tagRep = new TagRepository(); _lawRep = new LawRepository(); _hitRep = new HitRepository(); }
public DatabaseHitOutput(IHitRepository hitRepo) { this.hitRepo = hitRepo; }
public P20QuestionController() { _p20Rep = new P20QuestionRepository(); _hitRep = new HitRepository(); _tagRep = new TagRepository(); }
public DatabaseHitOutput(IHitRepository hitRepo) { this.hitRepo = hitRepo; semaphore = new SemaphoreSlim(1, 1); }