From 552006c433e9fa4d4b3206b5102b248450f59092 Mon Sep 17 00:00:00 2001 From: Sirieam Marie Hunke <hunke@itc.rwth-aachen.de> Date: Fri, 20 Sep 2024 13:12:41 +0000 Subject: [PATCH] Naming --- src/GraphDeployer/Deployer.cs | 2 +- src/GraphDeployer/Implementations/ResourcetypeStructuralData.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GraphDeployer/Deployer.cs b/src/GraphDeployer/Deployer.cs index 4069238..3b83ff8 100644 --- a/src/GraphDeployer/Deployer.cs +++ b/src/GraphDeployer/Deployer.cs @@ -230,7 +230,7 @@ public class Deployer _logger.LogInformation("Roles converted to linked data."); _logger.LogInformation("Converting resource types to linked data..."); - var resourceTypeStructuralGraphs = _resourceTypeStructuralData.ConvertToLinkedDataAsync(resourceTypeInformations); + var resourceTypeStructuralGraphs = _resourceTypeStructuralData.CreateGraphAsync(resourceTypeInformations); _logger.LogInformation("Storing the graphs..."); await StoreSql2LinkedGraphs(roleStructuralGraphs); diff --git a/src/GraphDeployer/Implementations/ResourcetypeStructuralData.cs b/src/GraphDeployer/Implementations/ResourcetypeStructuralData.cs index 3bd8462..079006d 100644 --- a/src/GraphDeployer/Implementations/ResourcetypeStructuralData.cs +++ b/src/GraphDeployer/Implementations/ResourcetypeStructuralData.cs @@ -20,7 +20,7 @@ public class ResourceTypeStructuralData _logger = logger; } - public async IAsyncEnumerable<IGraph> ConvertToLinkedDataAsync(IAsyncEnumerable<ResourceTypeInformationDto> entries) + public async IAsyncEnumerable<IGraph> CreateGraphAsync(IAsyncEnumerable<ResourceTypeInformationDto> entries) { await foreach (var entry in entries) { -- GitLab