Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/Assemblers/DtoPropertyAttributeMapping.cs =================================================================== diff -u -r3893 -r4000 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/Assemblers/DtoPropertyAttributeMapping.cs (.../DtoPropertyAttributeMapping.cs) (revision 3893) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/Assemblers/DtoPropertyAttributeMapping.cs (.../DtoPropertyAttributeMapping.cs) (revision 4000) @@ -56,13 +56,12 @@ /// private Func toPropTranslationRule; - /// /// Initializes a new instance of the DtoPropertyAttriubteMapping class /// public DtoPropertyAttributeMapping() { - this.Importance = DtoPropertyImportance.Optional; + Importance = DtoPropertyImportance.Optional; } /// @@ -90,8 +89,14 @@ /// public Func ToPropertyTranslationRule { - get { return this.toPropTranslationRule; } - set { this.toPropTranslationRule = new Func(value); } + get + { + return toPropTranslationRule; + } + set + { + toPropTranslationRule = value; + } } /// @@ -103,8 +108,14 @@ /// public Func ToAttributeTranslationRule { - get { return this.toAttributeTranslationRule; } - set { this.toAttributeTranslationRule = new Func(value); } + get + { + return toAttributeTranslationRule; + } + set + { + toAttributeTranslationRule = value; + } } } } \ No newline at end of file