public YahooPlayerResourceController(Helpers helpers, YahooApiRequestController yahooApiRequestController, YahooAuthController yahooAuthController, PlayerBaseController playerBaseController, YahooApiEndPoints endPoints)
 {
     _helpers = helpers;
     _yahooApiRequestController = yahooApiRequestController;
     _yahooAuthController       = yahooAuthController;
     _playerBaseController      = playerBaseController;
     _endPoints = endPoints;
 }
 public YahooApiRequestController(Helpers helpers, YahooApiEndPoints endPoints, YahooAuthController yahooAuthController, IHttpContextAccessor contextAccessor, BaseballScraperContext context, IOptions <TheGameIsTheGameConfiguration> theGameConfig)
 {
     _helpers             = helpers;
     _endPoints           = endPoints;
     _yahooAuthController = yahooAuthController;
     _contextAccessor     = contextAccessor;
     _context             = context;
     _theGameConfig       = theGameConfig.Value;
 }