コード例 #1
0
 public TechnologiesController(IBuildingsService buildingsService, ITechnologiesService techService, IPlayerService playerService, ILogicProvider logic)
 {
     this.buildingsService = buildingsService;
     this.techService = techService;
     this.playerService = playerService;
     this.logic = logic;
 }
コード例 #2
0
 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;
 }
コード例 #3
0
 public BooksController(
     IBooksService booksService,
     IPublishingsService publishingsService,
     IAuthorsService authorsService,
     ITechnologiesService technologiesService)
 {
     _booksService        = booksService;
     _publishingsService  = publishingsService;
     _authorsService      = authorsService;
     _technologiesService = technologiesService;
 }
コード例 #4
0
 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);
 }
コード例 #5
0
 public SearchController(
     ISearchService searchService,
     ITechnologiesService technologiesService,
     IBooksService booksService,
     IAuthorsService authorsService,
     IGlobalSearchService globalSearchService)
 {
     _searchService       = searchService;
     _technologiesService = technologiesService;
     _booksService        = booksService;
     _authorsService      = authorsService;
     _globalSearchService = globalSearchService;
 }
コード例 #6
0
 /// <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;
 }
コード例 #7
0
        /// <inheritdoc />
        public BooksService(
            DatabaseContext context,
            IMapper mapper,
            IAuthorsService authorsService,
            IPublishingsService publishingsService,
            ITechnologiesService technologiesService)
        {
            _context = context;
            _mapper  = mapper;

            _authorsService      = authorsService;
            _publishingsService  = publishingsService;
            _technologiesService = technologiesService;
        }
コード例 #8
0
 public TechnologiesAggregatorService(ITechnologiesService technologiesService)
 {
     _technologiesService = technologiesService;
 }
コード例 #9
0
 public UiService(Func <fiosEntities> getDb, IRelationshipsService relationshipsService, ITechnologiesService technologiesService)
     : base(getDb)
 {
     RelationshipsService = relationshipsService;
     TechnologiesService  = technologiesService;
 }
コード例 #10
0
 public ReportUtilities(Func <fiosEntities> getDb, ITechnologiesService technologiesService, IRelationshipsService relationshipsService)
 {
     GetDb = getDb;
     TechnologiesService  = technologiesService;
     RelationshipsService = relationshipsService;
 }
コード例 #11
0
 public TechnologiesController(ITechnologiesService technologiesService)
 {
     this._technologiesService = technologiesService;
 }