示例#1
0
        public StartUpdate(FootballAnalyzesDbContext db)
        {
            this.db = db;

            this.lastGamesForUpdate = new List <FootballGameBM>();
            this.nextGames          = new List <FootballGameBM>();
        }
示例#2
0
 public TeamService(FootballAnalyzesDbContext db, IGameService games)
 {
     this.db    = db;
     this.games = games;
 }
 public HomeService(FootballAnalyzesDbContext db)
 {
     this.db = db;
 }
示例#4
0
 public AdminUpdateService(FootballAnalyzesDbContext db)
 {
     this.db = db;
 }
 public PredictionService(FootballAnalyzesDbContext db)
 {
     this.db = db;
 }