Index: Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Plugin/GrassCoverErosionOutwardsPlugin.cs =================================================================== diff -u -r5ef2f44bca31b92735dff724f97b717c7c55f912 -r1eb7e7ef92a8a08a227ce81e75a2ac95df4b3b57 --- Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Plugin/GrassCoverErosionOutwardsPlugin.cs (.../GrassCoverErosionOutwardsPlugin.cs) (revision 5ef2f44bca31b92735dff724f97b717c7c55f912) +++ Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Plugin/GrassCoverErosionOutwardsPlugin.cs (.../GrassCoverErosionOutwardsPlugin.cs) (revision 1eb7e7ef92a8a08a227ce81e75a2ac95df4b3b57) @@ -43,6 +43,7 @@ using Ringtoets.Common.Forms.Helpers; using Ringtoets.Common.Forms.ImportInfos; using Ringtoets.Common.Forms.PresentationObjects; +using Ringtoets.Common.Forms.PropertyClasses; using Ringtoets.Common.Forms.TreeNodeInfos; using Ringtoets.Common.Plugin; using Ringtoets.Common.Service; @@ -79,13 +80,13 @@ context.WrappedData, new GrassCoverErosionOutwardsFailureMechanismPropertyChangeHandler()) }; - yield return new PropertyInfo + yield return new PropertyInfo { - CreateInstance = context => new GrassCoverErosionOutwardsDesignWaterLevelCalculationsProperties(context.WrappedData) + CreateInstance = context => new DesignWaterLevelCalculationsProperties(context.WrappedData) }; - yield return new PropertyInfo + yield return new PropertyInfo { - CreateInstance = context => new GrassCoverErosionOutwardsWaveHeightCalculationsProperties(context.WrappedData) + CreateInstance = context => new WaveHeightCalculationsProperties(context.WrappedData) }; yield return new PropertyInfo(); @@ -100,14 +101,14 @@ new ObservablePropertyChangeHandler(context.Calculation, context.WrappedData)) }; - yield return new PropertyInfo + yield return new PropertyInfo { - CreateInstance = context => new GrassCoverErosionOutwardsDesignWaterLevelCalculationProperties(context.WrappedData) + CreateInstance = context => new DesignWaterLevelCalculationProperties(context.WrappedData) }; - yield return new PropertyInfo + yield return new PropertyInfo { - CreateInstance = context => new GrassCoverErosionOutwardsWaveHeightCalculationProperties(context.WrappedData) + CreateInstance = context => new WaveHeightCalculationProperties(context.WrappedData) }; }