示例#1
0
 public StatisticController(
     IMapper mapper,
     IRaceLogic raceLogic,
     IStatisticLogic statisticLogic)
 {
     this.mapper         = mapper ?? throw new ArgumentNullException(nameof(mapper));
     this.raceLogic      = raceLogic ?? throw new ArgumentNullException(nameof(raceLogic));
     this.statisticLogic = statisticLogic ?? throw new ArgumentNullException(nameof(statisticLogic));
 }
示例#2
0
 public StatisticController(IStatisticLogic statisticLogic)
 {
     _statisticLogic = statisticLogic;
 }
示例#3
0
 public StatisticJob(IStatisticLogic statisticLogic)
 {
     _statisticLogic = statisticLogic;
 }