Index: DamEngine/trunk/src/Deltares.DamEngine.Interface/ConversionHelper.cs
===================================================================
diff -u -r1192 -r1227
--- DamEngine/trunk/src/Deltares.DamEngine.Interface/ConversionHelper.cs (.../ConversionHelper.cs) (revision 1192)
+++ DamEngine/trunk/src/Deltares.DamEngine.Interface/ConversionHelper.cs (.../ConversionHelper.cs) (revision 1227)
@@ -1043,9 +1043,9 @@
///
/// Converts to output PipingModelType.
///
- /// The UpliftType.
+ /// The UpliftType.
///
- public static int ConvertToOutputPipingModelType(PipingModelType PipingModelType)
+ public static int ConvertToOutputPipingModelType(PipingModelType pipingModelType)
{
var translationTable = new Dictionary()
{
@@ -1054,7 +1054,7 @@
{PipingModelType.Sellmeijer4Forces, 2},
{PipingModelType.Wti2017, 3}
};
- return translationTable[PipingModelType];
+ return translationTable[pipingModelType];
}
///