From 880e37ced52a7db01f392e5b62326ecc24af4a5a Mon Sep 17 00:00:00 2001 From: Frede Hundewadt Date: Wed, 14 Dec 2022 12:35:14 +0100 Subject: [PATCH] refactor signature AzureAuthStore ctor --- AzureAuthStore.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/AzureAuthStore.cs b/AzureAuthStore.cs index b4f15d1..6a2a597 100644 --- a/AzureAuthStore.cs +++ b/AzureAuthStore.cs @@ -28,10 +28,9 @@ namespace FCS.Lib.Azure { public class AzureAuthStore { - public AzureAuthStore( - string azureLoginUrl, string azureOAuthEndpoint, string azureTenantId, - string azureClientId, string azureGrantType, string azureSecret, - string azureLoginScope) + public AzureAuthStore(string azureLoginUrl, string azureOAuthEndpoint, + string azureLoginScope, string azureGrantType, string azureTenantId, + string azureClientId, string azureSecret) { AzureLoginUrl = azureLoginUrl; AzureOAuthEndpoint = azureOAuthEndpoint;