Skip to content

Commit

Permalink
Change to ITokenProviderFactory (#12)
Browse files Browse the repository at this point in the history
Co-authored-by: Basavaraj Araballi (XQK) <[email protected]>
  • Loading branch information
Araballi and Basavaraj Araballi (XQK) committed Jul 21, 2021
1 parent ebdeef2 commit 4958534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Kmd.Logic.Cvr.Client/CvrClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public sealed partial class CvrClient : IDisposable
/// <param name="httpClient">The HTTP client to use. The caller is expected to manage this resource and it will not be disposed.</param>
/// <param name="tokenProviderFactory">The Logic access token provider factory.</param>
/// <param name="options">The required configuration options.</param>
public CvrClient(HttpClient httpClient, LogicTokenProviderFactory tokenProviderFactory, CvrOptions options)
public CvrClient(HttpClient httpClient, ITokenProviderFactory tokenProviderFactory, CvrOptions options)
{
this._httpClient = httpClient ?? throw new ArgumentNullException(nameof(httpClient));
this._options = options ?? throw new ArgumentNullException(nameof(options));
Expand Down

0 comments on commit 4958534

Please sign in to comment.