Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Create/HeightStructures/HeightStructuresFailureMechanismCreateExtensions.cs =================================================================== diff -u -r08bb51221d82157423573733a9bf43e0191c9b68 -r0fbb881c5c82f540f01772234b3c1faadfab07f9 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Create/HeightStructures/HeightStructuresFailureMechanismCreateExtensions.cs (.../HeightStructuresFailureMechanismCreateExtensions.cs) (revision 08bb51221d82157423573733a9bf43e0191c9b68) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Create/HeightStructures/HeightStructuresFailureMechanismCreateExtensions.cs (.../HeightStructuresFailureMechanismCreateExtensions.cs) (revision 0fbb881c5c82f540f01772234b3c1faadfab07f9) @@ -55,7 +55,7 @@ IEnumerable sectionResults, PersistenceRegistry registry) { - foreach (var failureMechanismSectionResult in sectionResults) + foreach (HeightStructuresFailureMechanismSectionResult failureMechanismSectionResult in sectionResults) { HeightStructuresSectionResultEntity sectionResultEntity = failureMechanismSectionResult.Create(registry); FailureMechanismSectionEntity section = registry.Get(failureMechanismSectionResult.Section); @@ -68,7 +68,7 @@ FailureMechanismEntity entity, PersistenceRegistry registry) { - for (int i = 0; i < foreshoreProfiles.Count; i++) + for (var i = 0; i < foreshoreProfiles.Count; i++) { ForeshoreProfileEntity foreshoreProfileEntity = foreshoreProfiles[i].Create(registry, i); entity.ForeshoreProfileEntities.Add(foreshoreProfileEntity); @@ -80,7 +80,7 @@ FailureMechanismEntity entity, PersistenceRegistry registry) { - for (int i = 0; i < structures.Count; i++) + for (var i = 0; i < structures.Count; i++) { HeightStructureEntity structureEntity = structures[i].Create(registry, i); entity.HeightStructureEntities.Add(structureEntity);