Index: DamEngine/trunk/src/Deltares.DamEngine.Interface/ConversionHelper.cs =================================================================== diff -u -r1183 -r1192 --- DamEngine/trunk/src/Deltares.DamEngine.Interface/ConversionHelper.cs (.../ConversionHelper.cs) (revision 1183) +++ DamEngine/trunk/src/Deltares.DamEngine.Interface/ConversionHelper.cs (.../ConversionHelper.cs) (revision 1192) @@ -43,7 +43,6 @@ { var translationTable = new Dictionary() { - {InputDamProjectType.Assessment, DamProjectType.Assessment}, {InputDamProjectType.AssessmentRegional, DamProjectType.AssessmentRegional}, {InputDamProjectType.Design, DamProjectType.Design}, {InputDamProjectType.Operational, DamProjectType.Operational} @@ -60,7 +59,6 @@ { var translationTable = new Dictionary() { - {DamProjectType.Assessment, InputDamProjectType.Assessment}, {DamProjectType.AssessmentRegional, InputDamProjectType.AssessmentRegional}, {DamProjectType.Design, InputDamProjectType.Design}, {DamProjectType.Operational, InputDamProjectType.Operational} @@ -1093,7 +1091,7 @@ public const int SoilTypeGravel = 1; public const int SoilTypeLoam = 2; public const int SoilTypePeat = 3; - public const int SoilTypeSand = 4; + public const int SoilTypeSand = 4; /// /// Converts the input dikeMaterialType to SoilType. @@ -1112,6 +1110,7 @@ }; return translationTable[dikeMaterialType]; } + /// /// Converts the SoilType to the input dikeMaterialType. ///