Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfiles/MacroStabilityInwardsSoilLayerTransformer.cs =================================================================== diff -u -rff1b7c6a13dfcb3583d654055b422ec99ae7dc43 -r86320df646dfe8564940e686a98d6199b9c3b470 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfiles/MacroStabilityInwardsSoilLayerTransformer.cs (.../MacroStabilityInwardsSoilLayerTransformer.cs) (revision ff1b7c6a13dfcb3583d654055b422ec99ae7dc43) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/SoilProfiles/MacroStabilityInwardsSoilLayerTransformer.cs (.../MacroStabilityInwardsSoilLayerTransformer.cs) (revision 86320df646dfe8564940e686a98d6199b9c3b470) @@ -27,6 +27,7 @@ using Ringtoets.Common.IO.SoilProfile; using Ringtoets.MacroStabilityInwards.IO.Properties; using Ringtoets.MacroStabilityInwards.Primitives; +using RingtoetsCommonIOResources = Ringtoets.Common.IO.Properties.Resources; namespace Ringtoets.MacroStabilityInwards.IO.SoilProfiles { @@ -109,8 +110,8 @@ properties.UsePop = TransformUsePop(soilLayer.UsePop); properties.MaterialName = soilLayer.MaterialName; - properties.IsAquifer = soilLayer.IsAquifer; - properties.Color = soilLayer.Color; + properties.IsAquifer = SoilLayerIsAquiferConverter.Convert(soilLayer.IsAquifer); + properties.Color = SoilLayerColorConverter.Convert(soilLayer.Color); properties.AbovePhreaticLevelMean = soilLayer.AbovePhreaticLevelMean; properties.AbovePhreaticLevelCoefficientOfVariation = soilLayer.AbovePhreaticLevelCoefficientOfVariation; properties.AbovePhreaticLevelShift = soilLayer.AbovePhreaticLevelShift;