Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/IStructuresCalculationEntity.cs =================================================================== diff -u -rbce62ec6102f15b0dbb1328fd9d14063fd21c978 -r46b7b8c7ae08c83f5a21504d5e1f2f47b33b5e40 --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/IStructuresCalculationEntity.cs (.../IStructuresCalculationEntity.cs) (revision bce62ec6102f15b0dbb1328fd9d14063fd21c978) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/IStructuresCalculationEntity.cs (.../IStructuresCalculationEntity.cs) (revision 46b7b8c7ae08c83f5a21504d5e1f2f47b33b5e40) @@ -19,30 +19,31 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using System; - namespace Application.Ringtoets.Storage.DbContext { + /// + /// Interface for a calculation entity that represents a structure calculation. + /// public interface IStructuresCalculationEntity { - Nullable ModelFactorSuperCriticalFlowMean { get; set; } - Nullable StructureNormalOrientation { get; set; } - Nullable AllowedLevelIncreaseStorageMean { get; set; } - Nullable AllowedLevelIncreaseStorageStandardDeviation { get; set; } - Nullable StorageStructureAreaMean { get; set; } - Nullable StorageStructureAreaCoefficientOfVariation { get; set; } - Nullable FlowWidthAtBottomProtectionMean { get; set; } - Nullable FlowWidthAtBottomProtectionStandardDeviation { get; set; } - Nullable CriticalOvertoppingDischargeMean { get; set; } - Nullable CriticalOvertoppingDischargeCoefficientOfVariation { get; set; } + double? ModelFactorSuperCriticalFlowMean { get; set; } + double? StructureNormalOrientation { get; set; } + double? AllowedLevelIncreaseStorageMean { get; set; } + double? AllowedLevelIncreaseStorageStandardDeviation { get; set; } + double? StorageStructureAreaMean { get; set; } + double? StorageStructureAreaCoefficientOfVariation { get; set; } + double? FlowWidthAtBottomProtectionMean { get; set; } + double? FlowWidthAtBottomProtectionStandardDeviation { get; set; } + double? CriticalOvertoppingDischargeMean { get; set; } + double? CriticalOvertoppingDischargeCoefficientOfVariation { get; set; } double FailureProbabilityStructureWithErosion { get; set; } - Nullable WidthFlowAperturesMean { get; set; } - Nullable WidthFlowAperturesCoefficientOfVariation { get; set; } - Nullable StormDurationMean { get; set; } + double? WidthFlowAperturesMean { get; set; } + double? WidthFlowAperturesCoefficientOfVariation { get; set; } + double? StormDurationMean { get; set; } byte UseBreakWater { get; set; } byte UseForeshore { get; set; } short BreakWaterType { get; set; } - Nullable BreakWaterHeight { get; set; } + double? BreakWaterHeight { get; set; } HydraulicLocationEntity HydraulicLocationEntity { get; set; } ForeshoreProfileEntity ForeshoreProfileEntity { get; set; }