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