コード例 #1
0
 public StatisticController(IMessageService messageService, IStatisticFuncsService chatAnalyzerService, IStatisticService statisticService, ICustomStatisticService customStatisticService, IStatisticCacheService statisticCacheService)
 {
     this.messageService         = messageService;
     this.statisticFuncsService  = chatAnalyzerService;
     this.statisticService       = statisticService;
     this.customStatisticService = customStatisticService;
     this.statisticCacheService  = statisticCacheService;
 }
コード例 #2
0
 public StatisticService(IStatisticCacheService statisticCacheService, IMessageService messageService, IStatisticFuncsService statisticFuncsService)
 {
     this.statisticCacheService = statisticCacheService;
     this.messageService        = messageService;
     this.statisticFuncsService = statisticFuncsService;
 }