Index: Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.IO/GrassCoverErosionOutwardsConfigurationExporter.cs
===================================================================
diff -u -r633aedbd4c882f2811c3e8e6653ef352301c40b5 -r00a4b6318d0d1ae57df5ef362ba1e8908aa330be
--- Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.IO/GrassCoverErosionOutwardsConfigurationExporter.cs (.../GrassCoverErosionOutwardsConfigurationExporter.cs) (revision 633aedbd4c882f2811c3e8e6653ef352301c40b5)
+++ Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.IO/GrassCoverErosionOutwardsConfigurationExporter.cs (.../GrassCoverErosionOutwardsConfigurationExporter.cs) (revision 00a4b6318d0d1ae57df5ef362ba1e8908aa330be)
@@ -20,6 +20,7 @@
// All rights reserved.
using System;
+using System.Collections.Generic;
using Ringtoets.Common.Data.Calculation;
using Ringtoets.Common.IO.Exporters;
using Ringtoets.GrassCoverErosionOutwards.Data;
@@ -35,11 +36,11 @@
///
/// Creates a new instance of .
///
- /// The calculation group to export.
+ /// The configuration to export.
/// The path of the XML file to export to.
- /// Thrown when is null.
+ /// Thrown when is null.
/// Thrown when is invalid.
- public GrassCoverErosionOutwardsConfigurationExporter(CalculationGroup calculationGroup, string filePath)
- : base(calculationGroup, filePath) {}
+ public GrassCoverErosionOutwardsConfigurationExporter(IEnumerable configuration, string filePath)
+ : base(configuration, filePath) {}
}
}
\ No newline at end of file