Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/ISurfaceLineUpdateSurfaceLineStrategy.cs
===================================================================
diff -u -r0122d4ac58ee6f7be4ff804db1f6c65e88ce4562 -r425a1030cf1f383e0a8f5cbd712c52c5cc2d3369
--- Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/ISurfaceLineUpdateSurfaceLineStrategy.cs (.../ISurfaceLineUpdateSurfaceLineStrategy.cs) (revision 0122d4ac58ee6f7be4ff804db1f6c65e88ce4562)
+++ Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/ISurfaceLineUpdateSurfaceLineStrategy.cs (.../ISurfaceLineUpdateSurfaceLineStrategy.cs) (revision 425a1030cf1f383e0a8f5cbd712c52c5cc2d3369)
@@ -22,6 +22,7 @@
using System;
using System.Collections.Generic;
using Core.Common.Base;
+using Ringtoets.Piping.Data;
using Ringtoets.Piping.Primitives;
namespace Ringtoets.Piping.IO.Importers
@@ -35,8 +36,7 @@
///
/// Adds the imported data to the .
///
- /// The
- /// which needs to be updated.
+ /// The target collection which needs to be updated.
/// The imported surface lines.
/// The source path from where the surface lines were imported from.
/// An of updated instances.
@@ -45,7 +45,7 @@
/// is set with a more detailed explanation
/// of why the exception occurs.
IEnumerable UpdateSurfaceLinesWithImportedData(
- ObservableCollectionWithSourcePath targetCollection,
+ RingtoetsPipingSurfaceLineCollection targetCollection,
IEnumerable readRingtoetsPipingSurfaceLines,
string sourceFilePath);
}