Esempio n. 1
0
 public StatisticsService(
     IStatisticsRepository <StatWatchingV2Entity> watchingRepository,
     IStatisticsRepository <StatUserRegistrationV2Entity> userRegistrationRepository,
     IStatisticsRepository <StatProjectUploadingV2Entity> projectUploadingRepository,
     IStatisticsRepository <StatProjectStateV3Entity> projectStateRepostitory,
     IStatisticsRepository <StatProjectDeletionV2Entity> projectDeletionRepository,
     ITableValueConverter tableValueConverter,
     IStatMapper statMapper)
 {
     _watchingRepository         = watchingRepository;
     _userRegistrationRepository = userRegistrationRepository;
     _projectUploadingRepository = projectUploadingRepository;
     _projectStateRepostitory    = projectStateRepostitory;
     _projectDeletionRepository  = projectDeletionRepository;
     _tableValueConverter        = tableValueConverter;
     _statMapper = statMapper;
 }
 public StatEntityFactory(ITableValueConverter tableValueConverter)
 {
     _tableValueConverter = tableValueConverter;
 }
 public StandardReportService(IStandardReportRepository repository, ITableValueConverter tableValueConverter, IReportMapper reportMapper)
 {
     _repository = repository;
     _tableValueConverter = tableValueConverter;
     _reportMapper = reportMapper;
 }
Esempio n. 4
0
 public StatEntityFactory(ITableValueConverter tableValueConverter)
 {
     _tableValueConverter = tableValueConverter;
 }
Esempio n. 5
0
 public ReportMapper(ITableValueConverter tableValueConverter)
 {
     _tableValueConverter = tableValueConverter;
 }
 public StandardReportService(IStandardReportRepository repository, ITableValueConverter tableValueConverter, IReportMapper reportMapper)
 {
     _repository          = repository;
     _tableValueConverter = tableValueConverter;
     _reportMapper        = reportMapper;
 }
 public StatEntityFactoryOldOld(IHttpContextRepository httpContextRepository, IAuthenticator authenticator, ITableValueConverter tableValueConverter)
 {
     _httpContextRepository = httpContextRepository;
     _authenticator = authenticator;
     _tableValueConverter = tableValueConverter;
 }
Esempio n. 8
0
 public ReportMapper(ITableValueConverter tableValueConverter)
 {
     _tableValueConverter = tableValueConverter;
 }
 public StatEntityFactoryOldOld(IHttpContextRepository httpContextRepository, IAuthenticator authenticator, ITableValueConverter tableValueConverter)
 {
     _httpContextRepository = httpContextRepository;
     _authenticator         = authenticator;
     _tableValueConverter   = tableValueConverter;
 }