예제 #1
0
 public YahooManagerController(IOptions <TheGameIsTheGameConfiguration> theGameConfig, YahooApiRequestController yahooApiRequestController, YahooAuthController yahooAuthController)
 {
     _theGameConfig             = theGameConfig.Value;
     _yahooApiRequestController = yahooApiRequestController;
     _yahooAuthController       = yahooAuthController;
 }
 public YahooTeamPointsController(IOptions <TheGameIsTheGameConfiguration> theGameConfig, YahooApiRequestController yahooApiRequestController)
 {
     _theGameConfig             = theGameConfig.Value;
     _yahooApiRequestController = yahooApiRequestController;
 }
 public YahooTeamStatsController(Helpers helpers, IOptions <TheGameIsTheGameConfiguration> theGameConfig, YahooApiRequestController yahooApiRequestController)
 {
     _helpers                   = helpers;
     _theGameConfig             = theGameConfig.Value;
     _yahooApiRequestController = yahooApiRequestController;
 }
 public YahooScoreboardController(IOptions <TheGameIsTheGameConfiguration> theGameConfig, YahooApiRequestController yahooApiRequestController)
 {
     _theGameConfig             = theGameConfig.Value;
     _yahooApiRequestController = yahooApiRequestController;
 }