Index: Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingDataSynchronizationService.cs =================================================================== diff -u -rd6fe8399e8398224cf1bda9259052232d85b85a4 -r26f527fb809a2325c8f883ece9da01a8f8040eb3 --- Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingDataSynchronizationService.cs (.../PipingDataSynchronizationService.cs) (revision d6fe8399e8398224cf1bda9259052232d85b85a4) +++ Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingDataSynchronizationService.cs (.../PipingDataSynchronizationService.cs) (revision 26f527fb809a2325c8f883ece9da01a8f8040eb3) @@ -25,8 +25,10 @@ using System.Linq; using Core.Common.Base; using Ringtoets.Common.Data.Calculation; +using Ringtoets.Common.Data.Hydraulics; using Ringtoets.Common.Service; using Ringtoets.Piping.Data; +using Ringtoets.Piping.Data.SoilProfile; using Ringtoets.Piping.Primitives; namespace Ringtoets.Piping.Service @@ -201,7 +203,7 @@ } /// - /// Removes a given from the + /// Removes a given from the /// and clears all data that depends on it, either directly or indirectly. /// /// The failure mechanism containing . @@ -210,7 +212,8 @@ /// All observable objects affected by this method. /// Thrown when /// or is null. - public static IEnumerable RemoveStochasticSoilModel(PipingFailureMechanism failureMechanism, StochasticSoilModel soilModel) + public static IEnumerable RemoveStochasticSoilModel(PipingFailureMechanism failureMechanism, + PipingStochasticSoilModel soilModel) { if (failureMechanism == null) { @@ -273,7 +276,7 @@ } /// - /// Removes a given from calculations in the + /// Removes a given from calculations in the /// and clears all data that depends on it, either directly or indirectly. /// /// The failure mechanism containing . @@ -282,7 +285,8 @@ /// All observable objects affected by this method. /// Thrown when /// or is null. - public static IEnumerable RemoveStochasticSoilProfileFromInput(PipingFailureMechanism failureMechanism, StochasticSoilProfile soilProfile) + public static IEnumerable RemoveStochasticSoilProfileFromInput(PipingFailureMechanism failureMechanism, + PipingStochasticSoilProfile soilProfile) { if (failureMechanism == null) { @@ -305,7 +309,7 @@ } /// - /// Clears data dependent on a given , either directly or indirectly, + /// Clears data dependent on a given , either directly or indirectly, /// from calculations in the . /// /// The failure mechanism containing . @@ -314,7 +318,8 @@ /// All observable objects affected by this method. /// Thrown when /// or is null. - public static IEnumerable ClearStochasticSoilProfileDependentData(PipingFailureMechanism failureMechanism, StochasticSoilProfile soilProfile) + public static IEnumerable ClearStochasticSoilProfileDependentData(PipingFailureMechanism failureMechanism, + PipingStochasticSoilProfile soilProfile) { if (failureMechanism == null) { @@ -347,7 +352,8 @@ return changedObservables; } - private static IEnumerable GetCalculationsWithSoilProfileAssigned(PipingFailureMechanism failureMechanism, StochasticSoilProfile soilProfile) + private static IEnumerable GetCalculationsWithSoilProfileAssigned(PipingFailureMechanism failureMechanism, + PipingStochasticSoilProfile soilProfile) { IEnumerable pipingCalculationScenarios = failureMechanism.Calculations