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;
 }