Esempio n. 1
0
 public BlizzardItemAPI(
     IBlizzardAuthHandler handler,
     ApplicationConfig config
     )
 {
     _handler = handler;
     _client  = new RestClient(config.GameDataAPI.Uri);
 }
Esempio n. 2
0
 public ItemLoader(
     IBlizzardAuthHandler authHandler,
     IBlizzardItemAPI itemApiClient,
     IFileLoader fileLoader,
     IMongoFactory factory
     )
 {
     _authHandler   = authHandler;
     _itemApiClient = itemApiClient;
     _fileLoader    = fileLoader;
     _factory       = factory;
 }
Esempio n. 3
0
 public RaidController(IBlizzardAuthHandler authHandler)
 {
     _authHandler = authHandler;
 }