public ForecastsController(ITeamsRepository teamsRepository, IGamePointsPredictionEngine gamePointsPredictionEngine)
 {
     _teamsRepository            = teamsRepository;
     _gamePointsPredictionEngine = gamePointsPredictionEngine;
 }
Esempio n. 2
0
 public TrainController(IGamePointsPredictionEngine gamePointsPredictionEngine)
 {
     _gamePointsPredictionEngine = gamePointsPredictionEngine;
 }