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