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; }
public YahooManagerController(IOptions <TheGameIsTheGameConfiguration> theGameConfig, YahooApiRequestController yahooApiRequestController, YahooAuthController yahooAuthController) { _theGameConfig = theGameConfig.Value; _yahooApiRequestController = yahooApiRequestController; _yahooAuthController = yahooAuthController; }