public CreateModel(TeamOrganiser.Data.ApplicationDbContext context, FootballTeamSorter footballTeamSorter, FootballTeamService footballTeamService, FootballPlayerFootballGamesService footballPlayerFootballGamesService, FootballPlayerFootballTeamsService footballPlayerFootballTeamsService, UserManager <IdentityUser> userManager) { _context = context; _footballTeamSorter = footballTeamSorter; _footballTeamService = footballTeamService; _playerGamesService = footballPlayerFootballGamesService; _playerTeamsService = footballPlayerFootballTeamsService; _userManager = userManager; }
public EditModel(TeamOrganiser.Data.ApplicationDbContext context) { _context = context; }
public IndexAccountsModel(TeamOrganiser.Data.ApplicationDbContext context) { _context = context; }
public CreateFootballersModel(TeamOrganiser.Data.ApplicationDbContext context) { _context = context; }
public IndexPlayersModel(TeamOrganiser.Data.ApplicationDbContext context) { _context = context; }
public IndexModel(TeamOrganiser.Data.ApplicationDbContext context, UserManager <IdentityUser> userManager) { _context = context; _userManager = userManager; FootballGame = new FootballGame(); }
public DetailsModel(TeamOrganiser.Data.ApplicationDbContext context) { _context = context; }