public YahooPlayerResourceController(Helpers helpers, YahooApiRequestController yahooApiRequestController, YahooAuthController yahooAuthController, PlayerBaseController playerBaseController, YahooApiEndPoints endPoints)
 {
     _helpers = helpers;
     _yahooApiRequestController = yahooApiRequestController;
     _yahooAuthController       = yahooAuthController;
     _playerBaseController      = playerBaseController;
     _endPoints = endPoints;
 }
示例#2
0
 public YahooGameResourceConroller(YahooApiRequestController yahooApiRequestController, YahooAuthController yahooAuthController)
 {
     _yahooApiRequestController = yahooApiRequestController;
     _yahooAuthController       = yahooAuthController;
 }
 public YahooPlayersCollectionController(YahooApiRequestController yahooApiRequestController)
 {
     _yahooApiRequestController = yahooApiRequestController;
 }
 public YahooTeamResourceController(IOptions <TheGameIsTheGameConfiguration> theGameConfig, YahooApiRequestController yahooApiRequestController)
 {
     _theGameConfig             = theGameConfig.Value;
     _yahooApiRequestController = yahooApiRequestController;
 }