refactor signature AzureAuthStore ctor

This commit is contained in:
Frede Hundewadt 2022-12-14 12:35:14 +01:00
parent 626c84d024
commit 880e37ced5

View file

@ -28,10 +28,9 @@ namespace FCS.Lib.Azure
{ {
public class AzureAuthStore public class AzureAuthStore
{ {
public AzureAuthStore( public AzureAuthStore(string azureLoginUrl, string azureOAuthEndpoint,
string azureLoginUrl, string azureOAuthEndpoint, string azureTenantId, string azureLoginScope, string azureGrantType, string azureTenantId,
string azureClientId, string azureGrantType, string azureSecret, string azureClientId, string azureSecret)
string azureLoginScope)
{ {
AzureLoginUrl = azureLoginUrl; AzureLoginUrl = azureLoginUrl;
AzureOAuthEndpoint = azureOAuthEndpoint; AzureOAuthEndpoint = azureOAuthEndpoint;