public TechnologiesController(IBuildingsService buildingsService, ITechnologiesService techService, IPlayerService playerService, ILogicProvider logic) { this.buildingsService = buildingsService; this.techService = techService; this.playerService = playerService; this.logic = logic; }
public FleetController(IPlayerService playerService, IBuildingsService buildingsService, IFleetService fleetService, ITechnologiesService techService, ILogicProvider logic, IBackgroundWorkerService<IFleetService> worker) { this.playerService = playerService; this.buildingsService = buildingsService; this.fleetService = fleetService; this.techService = techService; this.logic = logic; this.worker = worker; }
public BooksController( IBooksService booksService, IPublishingsService publishingsService, IAuthorsService authorsService, ITechnologiesService technologiesService) { _booksService = booksService; _publishingsService = publishingsService; _authorsService = authorsService; _technologiesService = technologiesService; }
public AggregatorService( IScraperResultsService scraperResultsService, ITechnologiesService technologiesService, ILogger <AggregatorService> logger, IAggregatorResultsService aggregatorResultsService, IAwsConfigurationService awsConfigurationService, ITechnologiesAggregatorService technologiesAggregatorService) { _aggregatorResultsService = aggregatorResultsService; _awsConfigurationService = awsConfigurationService; _technologiesAggregatorService = technologiesAggregatorService; (_scraperResultsService, _technologiesService, _logger) = (scraperResultsService, technologiesService, logger); }
public SearchController( ISearchService searchService, ITechnologiesService technologiesService, IBooksService booksService, IAuthorsService authorsService, IGlobalSearchService globalSearchService) { _searchService = searchService; _technologiesService = technologiesService; _booksService = booksService; _authorsService = authorsService; _globalSearchService = globalSearchService; }
/// <inheritdoc /> public ParserService( IPiterParser piterParser, IAuthorsService authorsService, IPublishingsService publishingsService, ITechnologiesService technologiesService, IBooksService booksService, IEksmoParser eksmoParser) { _piterParser = piterParser; _authorsService = authorsService; _publishingsService = publishingsService; _technologiesService = technologiesService; _booksService = booksService; _eksmoParser = eksmoParser; }
/// <inheritdoc /> public BooksService( DatabaseContext context, IMapper mapper, IAuthorsService authorsService, IPublishingsService publishingsService, ITechnologiesService technologiesService) { _context = context; _mapper = mapper; _authorsService = authorsService; _publishingsService = publishingsService; _technologiesService = technologiesService; }
public TechnologiesAggregatorService(ITechnologiesService technologiesService) { _technologiesService = technologiesService; }
public UiService(Func <fiosEntities> getDb, IRelationshipsService relationshipsService, ITechnologiesService technologiesService) : base(getDb) { RelationshipsService = relationshipsService; TechnologiesService = technologiesService; }
public ReportUtilities(Func <fiosEntities> getDb, ITechnologiesService technologiesService, IRelationshipsService relationshipsService) { GetDb = getDb; TechnologiesService = technologiesService; RelationshipsService = relationshipsService; }
public TechnologiesController(ITechnologiesService technologiesService) { this._technologiesService = technologiesService; }