Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.IO/Configurations/HeightStructuresCalculationConfigurationImporter.cs =================================================================== diff -u -rf4c28926da2401b1fddbbe7f907fd663f0f5f4dc -rddfc49cdc5d478ea4fc5da9c625834def6dd1939 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.IO/Configurations/HeightStructuresCalculationConfigurationImporter.cs (.../HeightStructuresCalculationConfigurationImporter.cs) (revision f4c28926da2401b1fddbbe7f907fd663f0f5f4dc) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.IO/Configurations/HeightStructuresCalculationConfigurationImporter.cs (.../HeightStructuresCalculationConfigurationImporter.cs) (revision ddfc49cdc5d478ea4fc5da9c625834def6dd1939) @@ -115,7 +115,7 @@ if (TrySetStructure(readCalculation.StructureName, calculation) && TrySetHydraulicBoundaryLocation(readCalculation.HydraulicBoundaryLocationName, calculation) - && TrySetForeshoreProfile(readCalculation.ForeshoreProfileName, calculation) + && TrySetForeshoreProfile(readCalculation.ForeshoreProfileId, calculation) && TrySetStochasts(readCalculation, calculation) && TrySetOrientation(readCalculation, calculation) && TrySetFailureProbabilityStructureWithErosion(readCalculation, calculation) @@ -252,11 +252,11 @@ return false; } - private bool TrySetForeshoreProfile(string foreshoreProfileName, StructuresCalculation calculation) + private bool TrySetForeshoreProfile(string foreshoreProfileId, StructuresCalculation calculation) { ForeshoreProfile foreshoreProfile; - if (TryReadForeshoreProfile(foreshoreProfileName, calculation.Name, availableForeshoreProfiles, out foreshoreProfile)) + if (TryReadForeshoreProfile(foreshoreProfileId, calculation.Name, availableForeshoreProfiles, out foreshoreProfile)) { calculation.InputParameters.ForeshoreProfile = foreshoreProfile; return true;