コード例 #1
0
 public TradeClient(ILogger logger,
                    ILanguageProvider languageProvider,
                    IHttpClientProvider httpClientProvider,
                    IStaticItemCategoryService staticItemCategoryService,
                    SidekickSettings configuration,
                    IPoeApiClient poeApiClient,
                    INativeBrowser nativeBrowser)
 {
     this.logger                    = logger;
     this.languageProvider          = languageProvider;
     this.httpClientProvider        = httpClientProvider;
     this.staticItemCategoryService = staticItemCategoryService;
     this.configuration             = configuration;
     this.poeApiClient              = poeApiClient;
     this.nativeBrowser             = nativeBrowser;
 }
コード例 #2
0
ファイル: LeagueService.cs プロジェクト: MinyieDiaz/Sidekick
 public LeagueService(IPoeApiClient poeApiClient,
                      SidekickSettings configuration)
 {
     this.poeApiClient  = poeApiClient;
     this.configuration = configuration;
 }
コード例 #3
0
 public AttributeCategoryService(IPoeApiClient poeApiClient)
 {
     this.poeApiClient = poeApiClient;
 }
コード例 #4
0
 public ItemCategoryService(IPoeApiClient poeApiClient)
 {
     this.poeApiClient = poeApiClient;
 }