public MatchViewRepository(FIFAServerContext db)
 {
     this.db = db;
 }
 public SeasonTableViewRepository(FIFAServerContext db)
 {
     this.db = db;
 }
 public TeamPlayerRepository(FIFAServerContext db)
 {
     this.db = db;
 }
 public UserRepository(FIFAServerContext db)
 {
     this.db          = db;
     this.userManager = new UserManager <IdentityUser>(new UserStore <IdentityUser>(db));
 }
 public LeagueRepository(FIFAServerContext db, IRuleSetRepository ruleSetRepo)
 {
     this.db          = db;
     this.ruleSetRepo = ruleSetRepo;
 }
 public RuleSetRepository(FIFAServerContext db)
 {
     this.db = db;
 }