示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiService"/> class.
 /// </summary>
 /// <param name="httpClient">Http Client used for rest calls.</param>
 /// <param name="logger">Logging Instance for application logging.</param>
 public ApiService(
     IPlexRequestsHttpClient httpClient,
     ILogger <ApiService> logger)
 {
     this.httpClient = httpClient;
     this.logger     = logger;
 }
示例#2
0
 public ApiService(
     IPlexRequestsHttpClient httpClient,
     ILogger <ApiService> logger
     )
 {
     _httpClient = httpClient;
     _logger     = logger;
 }