Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructureProperties.cs =================================================================== diff -u -r8e8f8c83c45656f65adaa8e47600379dc5ae8f61 -rf861839e975251253e2ffd7bc3f0a1839b85534e --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructureProperties.cs (.../HeightStructureProperties.cs) (revision 8e8f8c83c45656f65adaa8e47600379dc5ae8f61) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructureProperties.cs (.../HeightStructureProperties.cs) (revision f861839e975251253e2ffd7bc3f0a1839b85534e) @@ -94,10 +94,7 @@ { get { - return new LogNormalDistributionProperties - { - Data = data.FlowWidthAtBottomProtection - }; + return new LogNormalDistributionProperties(data.FlowWidthAtBottomProtection); } } @@ -110,10 +107,7 @@ { get { - return new NormalDistributionProperties - { - Data = data.WidthFlowApertures - }; + return new NormalDistributionProperties(data.WidthFlowApertures); } } @@ -126,10 +120,7 @@ { get { - return new VariationCoefficientLogNormalDistributionProperties - { - Data = data.StorageStructureArea - }; + return new VariationCoefficientLogNormalDistributionProperties(data.StorageStructureArea); } } @@ -142,10 +133,7 @@ { get { - return new LogNormalDistributionProperties - { - Data = data.AllowedLevelIncreaseStorage - }; + return new LogNormalDistributionProperties(data.AllowedLevelIncreaseStorage); } } @@ -158,10 +146,7 @@ { get { - return new NormalDistributionProperties - { - Data = data.LevelCrestStructure - }; + return new NormalDistributionProperties(data.LevelCrestStructure); } } @@ -174,10 +159,7 @@ { get { - return new VariationCoefficientLogNormalDistributionProperties - { - Data = data.CriticalOvertoppingDischarge - }; + return new VariationCoefficientLogNormalDistributionProperties(data.CriticalOvertoppingDischarge); } }