Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Create/Piping/PipingFailureMechanismCreateExtensions.cs =================================================================== diff -u -r37aadd6a7b1a13ef1c8809b3479df0911c6632bb -rc2bf0666539fa1a781c6d5d633ac292fa4fe2bd4 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Create/Piping/PipingFailureMechanismCreateExtensions.cs (.../PipingFailureMechanismCreateExtensions.cs) (revision 37aadd6a7b1a13ef1c8809b3479df0911c6632bb) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Create/Piping/PipingFailureMechanismCreateExtensions.cs (.../PipingFailureMechanismCreateExtensions.cs) (revision c2bf0666539fa1a781c6d5d633ac292fa4fe2bd4) @@ -21,9 +21,7 @@ using System; using System.Collections.Generic; - using Application.Ringtoets.Storage.DbContext; - using Ringtoets.Piping.Data; using Ringtoets.Piping.Primitives; @@ -57,7 +55,7 @@ } private static void AddEntitiesForSectionResults( - IEnumerable sectionResults, + IEnumerable sectionResults, PersistenceRegistry registry) { foreach (var pipingFailureMechanismSectionResult in sectionResults) @@ -76,7 +74,7 @@ private static void AddEntitiesForStochasticSoilModels(PipingFailureMechanism mechanism, PersistenceRegistry registry, FailureMechanismEntity entity) { int index = 0; - foreach (var stochasticSoilModel in mechanism.StochasticSoilModels) + foreach (StochasticSoilModel stochasticSoilModel in mechanism.StochasticSoilModels) { entity.StochasticSoilModelEntities.Add(stochasticSoilModel.Create(registry, index++)); }