Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/PipingConfigurationImporter.cs =================================================================== diff -u -r94066add9735c5429a60d904e8618aae1139c7b8 -rba686f1e57553487d9e0d2ce1e8547b55a162947 --- Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/PipingConfigurationImporter.cs (.../PipingConfigurationImporter.cs) (revision 94066add9735c5429a60d904e8618aae1139c7b8) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/PipingConfigurationImporter.cs (.../PipingConfigurationImporter.cs) (revision ba686f1e57553487d9e0d2ce1e8547b55a162947) @@ -48,19 +48,19 @@ /// /// Creates a new instance of . /// - /// The path to the file to import from. + /// The path to the XML file to import from. /// The calculation group to update. /// The hydraulic boundary locations /// used to check if the imported objects contain the right location. /// The piping failure mechanism used to check /// if the imported objects contain the right data. /// Thrown when any parameter is /// null. - public PipingConfigurationImporter(string filePath, + public PipingConfigurationImporter(string xmlFilePath, CalculationGroup importTarget, IEnumerable hydraulicBoundaryLocations, PipingFailureMechanism failureMechanism) - : base(filePath, importTarget) + : base(xmlFilePath, importTarget) { if (hydraulicBoundaryLocations == null) { @@ -74,12 +74,12 @@ this.failureMechanism = failureMechanism; } - protected override PipingConfigurationReader CreateConfigurationReader(string filePath) + protected override PipingConfigurationReader CreateConfigurationReader(string xmlFilePath) { return new PipingConfigurationReader(FilePath); } - protected override ICalculationBase ProcessCalculation(ReadPipingCalculation readCalculation) + protected override ICalculationBase ParseReadCalculation(ReadPipingCalculation readCalculation) { var pipingCalculation = new PipingCalculationScenario(new GeneralPipingInput()) {