Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Create/ClosingStructures/ClosingStructuresFailureMechanismCreateExtensions.cs =================================================================== diff -u -rd0368f7a05ee1fea5a181022d8619219c4e8c2b2 -r0fbb881c5c82f540f01772234b3c1faadfab07f9 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Create/ClosingStructures/ClosingStructuresFailureMechanismCreateExtensions.cs (.../ClosingStructuresFailureMechanismCreateExtensions.cs) (revision d0368f7a05ee1fea5a181022d8619219c4e8c2b2) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Create/ClosingStructures/ClosingStructuresFailureMechanismCreateExtensions.cs (.../ClosingStructuresFailureMechanismCreateExtensions.cs) (revision 0fbb881c5c82f540f01772234b3c1faadfab07f9) @@ -55,7 +55,7 @@ IEnumerable sectionResults, PersistenceRegistry registry) { - foreach (var failureMechanismSectionResult in sectionResults) + foreach (ClosingStructuresFailureMechanismSectionResult failureMechanismSectionResult in sectionResults) { ClosingStructuresSectionResultEntity 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++) { ClosingStructureEntity structureEntity = structures[i].Create(registry, i); entity.ClosingStructureEntities.Add(structureEntity);