Ejemplo n.º 1
0
 public CompilerFactory(IFiltersManager filtersManager, IReportAccumulator reportAccumulator, IStatisticsService statisticsService, IStandardReportService standardReportService)
 {
     _filtersManager = filtersManager;
     _reportAccumulator = reportAccumulator;
     _statisticsService = statisticsService;
     _standardReportService = standardReportService;
 }
Ejemplo n.º 2
0
 public LoginViewModel(IAuthenticationService authenticationService, IAppSettings appSettings, IDialogService dialogService, IStatisticsService statisticsService)
 {
     _authenticationService = authenticationService;
     _appSettings = appSettings;
     _dialogService = dialogService;
     _statisticsService = statisticsService;
 }
Ejemplo n.º 3
0
 public WorkoutOfTheDayController(
     IAthleteService athleteService,
     IStatisticsService statisticsService)
 {
     _athleteService = athleteService;
     _statisticsService = statisticsService;
 }
 public SearchController(ISearchVideos searchService, IUserManagementService userManagement, IStatisticsService stats)
 {
     if (searchService == null) throw new ArgumentNullException("searchService");
     if (userManagement == null) throw new ArgumentNullException("userManagement");
     if (stats == null) throw new ArgumentNullException("stats");
     _searchService = searchService;
     _userManagement = userManagement;
     _stats = stats;
 }
Ejemplo n.º 5
0
 public TimerViewModel(IStatisticsService statisticsService, IMembersRepository membersRepository, IDialogService dialogService, IAppSettings appSettings)
 {
     _statisticsService = statisticsService;
     _membersRepository = membersRepository;
     _dialogService = dialogService;
     _appSettings = appSettings;
     InitializeLessons();
     SelectedLesson = Lessons[0];
 }
Ejemplo n.º 6
0
 public Application(
     IStatisticsService statisticsService,
     IHistogramService histogramService)
 {
     _statisticsService = statisticsService;
     histogramService.IntervalLength = 0.0125;
     StatisticsComparisonHelper.Service = _statisticsService;
     HistogramComparisonHelper.Service = histogramService;
     HistogramComparisonHelper.HistogramPath = ConfigurationManager.AppSettings["StatisticsOutputPath"];
 }
Ejemplo n.º 7
0
 public ChapterController(
     IStoryService storyService,
     IChapterService chapterService,
     IIdentifierProvider identifierProvider,
     IStatisticsService statisticsService)
 {
     this.storyService = storyService;
     this.chapterService = chapterService;
     this.identifierProvider = identifierProvider;
     this.statisticsService = statisticsService;
 }
Ejemplo n.º 8
0
 public ApiController(
     IPackageService packageService,
     IPackageFileService packageFileService,
     IUserService userService,
     INuGetExeDownloaderService nugetExeDownloaderService)
 {
     _packageService = packageService;
     _packageFileService = packageFileService;
     _userService = userService;
     _nugetExeDownloaderService = nugetExeDownloaderService;
     _statisticsService = null;
 }
Ejemplo n.º 9
0
 public ApiController(
     IPackageService packageService,
     IPackageFileService packageFileService,
     IUserService userService,
     INuGetExeDownloaderService nugetExeDownloaderService,
     IContentService contentService,
     IIndexingService indexingService,
     IStatisticsService statisticsService)
     : this(packageService, packageFileService, userService, nugetExeDownloaderService, contentService, indexingService)
 {
     _statisticsService = statisticsService;
 }
Ejemplo n.º 10
0
 public ApiController(
     IEntitiesContext entitiesContext,
     IPackageService packageService,
     IPackageFileService packageFileService,
     IUserService userService,
     INuGetExeDownloaderService nugetExeDownloaderService,
     IContentService contentService,
     IIndexingService indexingService,
     IAutomaticallyCuratePackageCommand autoCuratePackage,
     IStatisticsService statisticsService)
     : this(entitiesContext, packageService, packageFileService, userService, nugetExeDownloaderService, contentService, indexingService, autoCuratePackage)
 {
     StatisticsService = statisticsService;
 }
 public ToastmastersTimerViewModel(IStatisticsService statisticsService, IAppSettings appSettings)
 {
     _statisticsService = statisticsService;
     _appSettings = appSettings;
     if (Windows.ApplicationModel.DesignMode.DesignModeEnabled)
     {
         SelectedBackground = DarkBackground;
         return;
     }
     GreenTimeBackground = Colors.ForestGreen;
     YellowTimeBackground = Color.FromArgb(255, 242, 223, 116);
     RedTimeBackground = Color.FromArgb(255, 205, 32, 44);
     ResetTimer();
 }
 public VideosController(IVideoCatalogService videoCatalog, IUserManagementService userManagement, IStatisticsService stats,
                         IRatingsService ratings, ISuggestVideos suggestions)
 {
     if (videoCatalog == null) throw new ArgumentNullException("videoCatalog");
     if (userManagement == null) throw new ArgumentNullException("userManagement");
     if (stats == null) throw new ArgumentNullException("stats");
     if (ratings == null) throw new ArgumentNullException("ratings");
     if (suggestions == null) throw new ArgumentNullException("suggestions");
     _videoCatalog = videoCatalog;
     _userManagement = userManagement;
     _stats = stats;
     _ratings = ratings;
     _suggestions = suggestions;
 }
Ejemplo n.º 13
0
 public ApiController(
     IPackageService packageService,
     IPackageFileService packageFileService,
     IUserService userService,
     INuGetExeDownloaderService nugetExeDownloaderService,
     IContentService contentService,
     IIndexingService indexingService)
 {
     _packageService = packageService;
     _packageFileService = packageFileService;
     _userService = userService;
     _nugetExeDownloaderService = nugetExeDownloaderService;
     _contentService = contentService;
     _statisticsService = null;
     _indexingService = indexingService;
 }
Ejemplo n.º 14
0
 public TradingModel(
     IStatisticsService statisticsService,
     IForexMarketService forexMarketService,
     IForexTradingAgentService forexTradingAgentService,
     IForexTradingService forexTradingService)
 {
     _statisticsService = statisticsService;
     _forexMarketService = forexMarketService;
     _forexTradingAgentService = forexTradingAgentService;
     _forexTradingService = forexTradingService;
     _months = new List<string>();
     for (var i = 1; i <= 12; i++)
     {
         _months.Add(string.Format("{0:00}", i));
     }
     StatisticsSequences = new Dictionary<MonthPeriodKey, List<StatisticsSequenceDto>>();
 }
Ejemplo n.º 15
0
 public StatisticsController(IStatisticsService service)
 {
     _service = service;
 }
Ejemplo n.º 16
0
 public StatisticsApiController(IStatisticsService statistics)
 => this.statistics = statistics;
Ejemplo n.º 17
0
 public HomeController(IProjectService projectService, IStatisticsService statisticsService, IUsersService usersService)
 {
     this.projectService    = projectService;
     this.statisticsService = statisticsService;
     this.itemsPerPage      = PtConstants.itemsPerPage;
 }
Ejemplo n.º 18
0
 public StatisticsCacheService(IStatisticsService statisticsService)
 {
     this.statisticsService = statisticsService;
 }
Ejemplo n.º 19
0
 public StatisticsController(IUsersService userService, IStatisticsService statsService)
 {
     _statsService = statsService;
     _userService = userService;
 }
 public SearchController(ISearchVideosByTag searchService, IUserManagementService userManagement, IStatisticsService stats)
 {
     if (searchService == null)
     {
         throw new ArgumentNullException("searchService");
     }
     if (userManagement == null)
     {
         throw new ArgumentNullException("userManagement");
     }
     if (stats == null)
     {
         throw new ArgumentNullException("stats");
     }
     _searchService  = searchService;
     _userManagement = userManagement;
     _stats          = stats;
 }
Ejemplo n.º 21
0
 public StatisticsCompiler(IFiltersManager filtersManager, IStatisticsService statisticsService, Interval interval)
 {
     _filtersManager = filtersManager;
     _statisticsService = statisticsService;
     _interval = interval;
 }
 public PostCreateConsumer(IStatisticsService statistics)
 => this.statistics = statistics;
 public StatisticsController(IBaseService baseService, IStatisticsService statisticsService) : base(baseService)
 {
     _statisticsService = statisticsService;
 }
Ejemplo n.º 24
0
 public HomeViewModel(IStatisticsService statisticsService, IAppSettings appSettings)
 {
     _statisticsService = statisticsService;
     _appSettings       = appSettings;
 }
Ejemplo n.º 25
0
 public InfoSpider(IEventBus eventBus, IStatisticsService statisticsService, SpiderOptions options, ILogger <Spider> logger, IServiceProvider services) : base(eventBus, statisticsService, options, logger, services)
 {
 }
Ejemplo n.º 26
0
 public FolderDeletedConsumer(IStatisticsService statisticsService)
 => this.statisticsService = statisticsService;
Ejemplo n.º 27
0
 public HomeController(
     IStatisticsService statisticsService)
 {
     _statisticsService = statisticsService;
 }
Ejemplo n.º 28
0
 public HomeController(ILogger <HomeController> logger, IStatisticsService statisticsService)
 {
     _statisticsService = statisticsService;
     _logger            = logger;
 }
Ejemplo n.º 29
0
 public AnswerActionController(IAnswerDescriptionService answerDescriptionService,
                               IProfanityService profanityService, IAnswerService answerService, IResourcesService resourcesService, IUserService userService,
                               IVoteService voteService, ILoggerFactory loggerFactory, IOptions <AppSettings> appSettings, IStatisticsService statisticsService)
 {
     _userService = userService;
     _answerDescriptionService = answerDescriptionService;
     _profanityService         = profanityService;
     _answerService            = answerService;
     _resourcesService         = resourcesService;
     _voteService       = voteService;
     _appSettings       = appSettings;
     _statisticsService = statisticsService;
     _logger            = loggerFactory.CreateLogger <HomeController>();
     _logger.LogInformation("created AnswerActionController");
 }
 public FileUploadedConsumer(IStatisticsService statisticsService)
 => this.statisticsService = statisticsService;
Ejemplo n.º 31
0
 public AdminController(IStatisticsService statisticsService)
 {
     this.statisticsService = statisticsService;
 }
Ejemplo n.º 32
0
 public CnblogsSpider(IEventBus mq, IStatisticsService statisticsService, SpiderOptions options, ILogger <Spider> logger, IServiceProvider services) : base(mq, statisticsService, options, logger, services)
 {
 }
 public DashboardController(IStatisticsService statistics)
 {
     this.statistics = statistics;
 }
Ejemplo n.º 34
0
        //! END Section: Globals

        //! Section: Methods

        /// <summary>
        /// Constructor of the controller that handles dependency injection of required services
        /// </summary>
        /// <param name="statisticsService">Service that allows statistics calculations</param>
        public StatisticsController(IStatisticsService statisticsService)
        {
            // Populate the service using dependency injection
            _statisticsService = statisticsService;
        }
Ejemplo n.º 35
0
 public RefereeService(IRepository <Referee> repository,
                       IStatisticsService statisticsService)
 {
     this.repository        = repository;
     this.statisticsService = statisticsService;
 }
Ejemplo n.º 36
0
 public StatisticsController(IStatisticsService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }
 public PlaybackStatsController(IStatisticsService stats)
 {
     if (stats == null) throw new ArgumentNullException("stats");
     _stats = stats;
 }
Ejemplo n.º 38
0
 public StatisticsCompiler(IFiltersManager filtersManager, IStatisticsService statisticsService, Interval interval)
 {
     _filtersManager    = filtersManager;
     _statisticsService = statisticsService;
     _interval          = interval;
 }
Ejemplo n.º 39
0
 public StatisticsController(IStatisticsService statisticsService, ILogger <StatisticsController> logger)
 {
     _statisticsService = statisticsService;
     _logger            = logger;
 }
Ejemplo n.º 40
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SearchController"/> class.
 /// </summary>
 /// <param name="mapper">The mapper.</param>
 /// <param name="telemetryClient"></param>
 /// <param name="repositoryService"></param>
 /// <param name="statisticsService"></param>
 public SearchController(IMapper mapper, TelemetryClient telemetryClient, IRepositoryManagementService repositoryService, IStatisticsService statisticsService, IManifestQueryResultSorter sorter)
 {
     this.mapper            = mapper;
     this.telemetryClient   = telemetryClient;
     this.repositoryService = repositoryService;
     this.statisticsService = statisticsService;
     this.sorter            = sorter;
 }
Ejemplo n.º 41
0
 public HomeViewModel(IStatisticsService statisticsService, IAppSettings appSettings)
 {
     _statisticsService = statisticsService;
     _appSettings = appSettings;
 }
Ejemplo n.º 42
0
 public StatisticsController(IStatisticsService stats)
 {
     this.stats = stats;
 }
Ejemplo n.º 43
0
 public StatisticsController(ISubtextContext context, IStatisticsService statisticsService)
 {
     StatisticsService = statisticsService;
     SubtextContext = context;
 }
Ejemplo n.º 44
0
 public StatisticsController(IAggregateStatsService aggregateStatsService)
 {
     _statisticsService = null;
     _aggregateStatsService = aggregateStatsService;
 }
 public DashboardController(IStatisticsService stastisticService)
 {
     _stastisticService = stastisticService;
 }
Ejemplo n.º 46
0
 public StatisticsController(IStatisticsService statisticsService, IAggregateStatsService aggregateStatsService)
 {
     _statisticsService = statisticsService;
     _aggregateStatsService = aggregateStatsService;
 }
 public TestBaseSendingManager(ISubscriptionsManager subscriptionsManager, IStatisticsService statistics, IDataService dataService, ILogger logger)
     : base(subscriptionsManager, statistics, dataService, logger)
 {
 }
 public StatisticsController(IStatisticsService statistics)
 {
     this.statistics = statistics;
 }
 public StatisticsController(IStatisticsService statisticsService)
 {
     this.statisticsService = statisticsService;
 }
Ejemplo n.º 50
0
 public CnblogsSpider(IDynamicMessageQueue dmq, IMessageQueue mq, IStatisticsService statisticsService, ISpiderOptions options,
                      ILogger <Spider> logger, IServiceProvider services) : base(dmq, mq, statisticsService, options, logger, services)
 {
 }
 public UserController(IUserService userService, IStatisticsService statisticsService)
 {
     this.userService = userService;
     this.statisticsService = statisticsService;
 }
Ejemplo n.º 52
0
 public GithubSpider(IMessageQueue mq, IStatisticsService statisticsService, ISpiderOptions options,
                     ILogger <Spider> logger, IServiceProvider services) : base(mq, statisticsService, options, logger, services)
 {
 }
Ejemplo n.º 53
0
 public ManagementController(IStatisticsService statisticsService)
 {
     this._statisticsService = statisticsService;
 }
 public StudentsStatisticsController(IStatisticsService statisticsService)
 {
     this.statisticsService = statisticsService;
 }
Ejemplo n.º 55
0
 public StatisticsController(IStatisticsService statisticsService)
 {
     _statisticsService = statisticsService;
     _aggregateStatsService = null;
 }
Ejemplo n.º 56
0
 public StatisticsController(IAggregateStatsService aggregateStatsService)
 {
     _statisticsService     = null;
     _aggregateStatsService = aggregateStatsService;
 }
Ejemplo n.º 57
0
 public StatisticsController(IStatisticsService statisticsService)
 {
     _statisticsService     = statisticsService;
     _aggregateStatsService = null;
 }
Ejemplo n.º 58
0
 public StatisticsController(IStatisticsService statisticsService, IAggregateStatsService aggregateStatsService)
 {
     _statisticsService     = statisticsService;
     _aggregateStatsService = aggregateStatsService;
 }
Ejemplo n.º 59
0
 public DotaController(IStatisticsService  statisticsService)
 {
     _statisticsService = statisticsService;
 }
Ejemplo n.º 60
0
 public ApiController(
     IEntitiesContext entitiesContext,
     IPackageService packageService,
     IPackageFileService packageFileService,
     IUserService userService,
     INuGetExeDownloaderService nugetExeDownloaderService,
     IContentService contentService,
     IIndexingService indexingService,
     ISearchService searchService,
     IAutomaticallyCuratePackageCommand autoCuratePackage,
     IStatusService statusService,
     IStatisticsService statisticsService,
     IMessageService messageService,
     AuditingService auditingService,
     IGalleryConfigurationService configurationService)
     : this(entitiesContext, packageService, packageFileService, userService, nugetExeDownloaderService, contentService, indexingService, searchService, autoCuratePackage, statusService, messageService, auditingService, configurationService)
 {
     StatisticsService = statisticsService;
 }