Index: Riskeer/Revetment/src/Riskeer.Revetment.Data/GeneralWaveConditionsInput.cs =================================================================== diff -u -r9339a780307cdb21ebe38cbd3aa8811e2c98d980 -rc56dddb7f63e9297d0af54055bfda90a77d1c3dd --- Riskeer/Revetment/src/Riskeer.Revetment.Data/GeneralWaveConditionsInput.cs (.../GeneralWaveConditionsInput.cs) (revision 9339a780307cdb21ebe38cbd3aa8811e2c98d980) +++ Riskeer/Revetment/src/Riskeer.Revetment.Data/GeneralWaveConditionsInput.cs (.../GeneralWaveConditionsInput.cs) (revision c56dddb7f63e9297d0af54055bfda90a77d1c3dd) @@ -6,7 +6,7 @@ // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. -// +// // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -54,6 +54,6 @@ /// /// Gets the 'c' parameter used in wave conditions calculations. /// - public RoundedDouble C { get; } + public RoundedDouble C { get; set; } } } \ No newline at end of file Index: Riskeer/WaveImpactAsphaltCover/src/Riskeer.WaveImpactAsphaltCover.Forms/PropertyClasses/HydraulicLoadsState/WaveImpactAsphaltCoverFailureMechanismProperties.cs =================================================================== diff -u -r9339a780307cdb21ebe38cbd3aa8811e2c98d980 -rc56dddb7f63e9297d0af54055bfda90a77d1c3dd --- Riskeer/WaveImpactAsphaltCover/src/Riskeer.WaveImpactAsphaltCover.Forms/PropertyClasses/HydraulicLoadsState/WaveImpactAsphaltCoverFailureMechanismProperties.cs (.../WaveImpactAsphaltCoverFailureMechanismProperties.cs) (revision 9339a780307cdb21ebe38cbd3aa8811e2c98d980) +++ Riskeer/WaveImpactAsphaltCover/src/Riskeer.WaveImpactAsphaltCover.Forms/PropertyClasses/HydraulicLoadsState/WaveImpactAsphaltCoverFailureMechanismProperties.cs (.../WaveImpactAsphaltCoverFailureMechanismProperties.cs) (revision c56dddb7f63e9297d0af54055bfda90a77d1c3dd) @@ -6,7 +6,7 @@ // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. -// +// // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -87,6 +87,10 @@ { return data.GeneralInput.C; } + set + { + data.GeneralInput.C = value; + } } #endregion