Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Read/HydraulicLocationOutputEntityReadExtensions.cs =================================================================== diff -u -rf04bc7a1a7cac4b688ab59088e47f7e0a162c86a -rda7bb9a6d96d7118d6dcdc2ee17a11d5b43f44c7 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Read/HydraulicLocationOutputEntityReadExtensions.cs (.../HydraulicLocationOutputEntityReadExtensions.cs) (revision f04bc7a1a7cac4b688ab59088e47f7e0a162c86a) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Read/HydraulicLocationOutputEntityReadExtensions.cs (.../HydraulicLocationOutputEntityReadExtensions.cs) (revision da7bb9a6d96d7118d6dcdc2ee17a11d5b43f44c7) @@ -28,30 +28,30 @@ { /// /// Extension methods for related to creating - /// a . + /// a . /// internal static class HydraulicLocationOutputEntityReadExtensions { /// - /// Read the and use the information to construct a . + /// Read the and use the information to construct a . /// - /// The to create for. - /// A new . + /// The to create for. + /// A new . /// Thrown when is null. - internal static HydraulicBoundaryLocationOutput Read(this HydraulicLocationOutputEntity entity) + internal static HydraulicBoundaryLocationCalculationOutput Read(this HydraulicLocationOutputEntity entity) { if (entity == null) { throw new ArgumentNullException(nameof(entity)); } - return new HydraulicBoundaryLocationOutput(entity.Result.ToNullAsNaN(), - entity.TargetProbability.ToNullAsNaN(), - entity.TargetReliability.ToNullAsNaN(), - entity.CalculatedProbability.ToNullAsNaN(), - entity.CalculatedReliability.ToNullAsNaN(), - (CalculationConvergence) entity.CalculationConvergence, - entity.GeneralResultSubMechanismIllustrationPointEntity?.Read()); + return new HydraulicBoundaryLocationCalculationOutput(entity.Result.ToNullAsNaN(), + entity.TargetProbability.ToNullAsNaN(), + entity.TargetReliability.ToNullAsNaN(), + entity.CalculatedProbability.ToNullAsNaN(), + entity.CalculatedReliability.ToNullAsNaN(), + (CalculationConvergence) entity.CalculationConvergence, + entity.GeneralResultSubMechanismIllustrationPointEntity?.Read()); } } } \ No newline at end of file