From a2b4aa4094d34b45dce32a3a74faa709150ec5aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Vaillant?= Date: Wed, 27 Nov 2024 16:54:23 +0100 Subject: [PATCH] Moved Name param on top of the public param list --- .../Fixture/TemporaryDataFactoryDataFlow.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Arcus.Testing.Tests.Integration/Integration/DataFactory/Fixture/TemporaryDataFactoryDataFlow.cs b/src/Arcus.Testing.Tests.Integration/Integration/DataFactory/Fixture/TemporaryDataFactoryDataFlow.cs index 2c2f9509..613e0fe3 100644 --- a/src/Arcus.Testing.Tests.Integration/Integration/DataFactory/Fixture/TemporaryDataFactoryDataFlow.cs +++ b/src/Arcus.Testing.Tests.Integration/Integration/DataFactory/Fixture/TemporaryDataFactoryDataFlow.cs @@ -66,6 +66,11 @@ private TemporaryDataFactoryDataFlow(DataFlowDataType dataType, TestConfig confi private DataFactoryConfig DataFactory => _config.GetDataFactory(); private StorageAccount StorageAccount => _config.GetStorageAccount(); + /// + /// Gets the unique name of the temporary DataFlow in Azure DataFactory. + /// + public string Name { get; } + /// /// Gets the unique name of the source of the temporary DataFlow in Azure DataFactory. /// This name is the name of the source "step" of the DataFlow, not to be mistaken with the source DataSet name. @@ -103,11 +108,6 @@ private TemporaryDataFactoryDataFlow(DataFlowDataType dataType, TestConfig confi /// public string SinkDataSetParameterValue { get; } - /// - /// Gets the unique name of the temporary DataFlow in Azure DataFactory. - /// - public string Name { get; } - /// /// Creates a DataFlow with a CSV source and sink on an Azure DataFactory resource. ///