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