コード例 #1
0
 public PagesController(IAggregateStatsService statsSvc)
 {
     _statsSvc = statsSvc;
 }
コード例 #2
0
 public PagesController(IAggregateStatsService statsSvc, IMessageService messageService, IPrincipal currentUser)
 {
     this.statsSvc       = statsSvc;
     this.messageService = messageService;
     this.currentUser    = currentUser;
 }
コード例 #3
0
 public PagesController(IAggregateStatsService statsSvc, IMessageService messageService)
 {
     this.statsSvc = statsSvc;
     this.messageService = messageService;
 }
コード例 #4
0
 public PagesController(IAggregateStatsService statsSvc)
 {
     this.statsSvc = statsSvc;
 }
コード例 #5
0
 public StatisticsController(IStatisticsService statisticsService)
 {
     _statisticsService = statisticsService;
     _aggregateStatsService = null;
 }
コード例 #6
0
 public StatisticsController(IStatisticsService statisticsService, IAggregateStatsService aggregateStatsService)
 {
     _statisticsService = statisticsService;
     _aggregateStatsService = aggregateStatsService;
 }
コード例 #7
0
 public StatisticsController(IAggregateStatsService aggregateStatsService)
 {
     _statisticsService = null;
     _aggregateStatsService = aggregateStatsService;
 }
コード例 #8
0
 public StatisticsController(IStatisticsService statisticsService, IAggregateStatsService aggregateStatsService)
 {
     _statisticsService     = statisticsService;
     _aggregateStatsService = aggregateStatsService;
 }
コード例 #9
0
 public StatisticsController(IStatisticsService statisticsService)
 {
     _statisticsService     = statisticsService;
     _aggregateStatsService = null;
 }
コード例 #10
0
 public StatisticsController(IAggregateStatsService aggregateStatsService)
 {
     _statisticsService     = null;
     _aggregateStatsService = aggregateStatsService;
 }
コード例 #11
0
 public PagesController(IAggregateStatsService statsSvc, IMessageService messageService)
 {
     this.statsSvc       = statsSvc;
     this.messageService = messageService;
 }