예제 #1
0
 public StatisticController(IIndividualStatService individualStat, IGeneralStatService generalStat, IRspStorage storage, IRspStorage rspStorage)
 {
     _individualStat = individualStat;
     _generalStat    = generalStat;
     _storage        = storage;
     _rspStorage     = rspStorage;
 }
예제 #2
0
 public SeriesService(IIndividualStatService individualStatService, IRspStorage storage)
 {
     _individualStatService = individualStatService;
     _storage = storage;
     _rounds  = new List <Round>();
 }
예제 #3
0
 public IndividualTests()
 {
     _service = new IndividualStatService();
 }