Exemple #1
0
 public DashboardHandler(IRRConfiguration config, IIpFilter ipFilter, IReducingQueue queue, IReductionRepository repo, IUriBuilder uriBuilder)
 {
     this.config     = config;
     this.ipFilter   = ipFilter;
     this.queue      = queue;
     this.repo       = repo;
     this.uriBuilder = uriBuilder;
 }
 public DashboardHandler(IRRConfiguration config, IIpFilter ipFilter, IReducingQueue queue, IReductionRepository repo, IUriBuilder uriBuilder)
 {
     this.config = config;
     this.ipFilter = ipFilter;
     this.queue = queue;
     this.repo = repo;
     this.uriBuilder = uriBuilder;
 }
 public FlushHandler(IRRConfiguration configuration, IHostingEnvironmentWrapper hostingEnvironment, IIpFilter ipFilter, IReducingQueue queue, IUriBuilder uriBuilder, IStore store)
 {
     this.configuration      = configuration;
     this.hostingEnvironment = hostingEnvironment;
     this.ipFilter           = ipFilter;
     this.queue      = queue;
     this.uriBuilder = uriBuilder;
     this.store      = store;
 }
 public FlushHandler(IRRConfiguration configuration, IHostingEnvironmentWrapper hostingEnvironment, IIpFilter ipFilter, IReducingQueue queue, IUriBuilder uriBuilder, IStore store)
 {
     this.configuration = configuration;
     this.hostingEnvironment = hostingEnvironment;
     this.ipFilter = ipFilter;
     this.queue = queue;
     this.uriBuilder = uriBuilder;
     this.store = store;
 }
Exemple #5
0
 public IpFilterController(IIpFilter ipFilterService)
 {
     this.ipFilterService = ipFilterService;
 }