public FantasyLeaguesController(IFantasyLeagueService fantasyLeagueService, UserManager <ApplicationUser> userManager,
                                 IFantasyMatchupService fantasyMatchupService)
 {
     _userManager           = userManager;
     _fantasyLeagueService  = fantasyLeagueService;
     _fantasyMatchupService = fantasyMatchupService;
 }
 public FantasyMatchupsController(IFantasyMatchupService fantasyMatchupService, IFantasyLeagueService fantasyLeagueService,
                                  IFantasyMatchupsWeeksService fantasyMatchupsWeeksService, IPlayerMyTeamService playerMyTeamService)
 {
     _fantasyMatchupService       = fantasyMatchupService;
     _fantasyLeagueService        = fantasyLeagueService;
     _fantasyMatchupsWeeksService = fantasyMatchupsWeeksService;
     _playerMyTeamService         = playerMyTeamService;
 }
 public FantasyMatchupService(ApplicationDbContext context, IPlayerMyTeamService playerMyTeamService,
                              IFantasyMatchupsWeeksService fantasyMatchupsWeeksService, IPlayerGameStatsService playerGameStatsService,
                              IFantasyLeagueStandingsService fantasyLeagueStandingsService, IFantasyLeagueService fantasyLeagueService)
 {
     _context                       = context;
     _playerMyTeamService           = playerMyTeamService;
     _fantasyMatchupsWeeksService   = fantasyMatchupsWeeksService;
     _playerGameStatsService        = playerGameStatsService;
     _fantasyLeagueStandingsService = fantasyLeagueStandingsService;
     _fantasyLeagueService          = fantasyLeagueService;
 }
 public MyTeamsService(ApplicationDbContext context, IFantasyLeagueService fantasyLeagueService)
 {
     _context = context;
     _fantasyLeagueService = fantasyLeagueService;
 }