public InteractiveController(IYahooAuthClient authClient, IYahooFantasyClient fantasyClient)
 {
     this._authClient    = authClient;
     this._fantasyClient = fantasyClient;
 }
 public ScoresController(IYahooFantasyClient fantasyClient)
 {
     _fantasyClient = fantasyClient;
 }
Esempio n. 3
0
 public AccountController(IYahooAuthClient authClient, IYahooFantasyClient fantasyClient)
 {
     this._authClient    = authClient;
     this._fantasyClient = fantasyClient;
 }
Esempio n. 4
0
 public FantasyHockeyTool(ILogger <FantasyHockeyTool> logger, IYahooAuthClient client, IYahooFantasyClient fantasyClient)
 {
     _logger  = logger;
     _client  = client;
     _fantasy = fantasyClient;
 }