Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfile/SoilProfile2DReader.cs =================================================================== diff -u -rabafce00e4098c8041a52f62b3f174c615cf890d -rd2b5b334c49948fa49297a1d24c13bc98aa6ee1e --- Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfile/SoilProfile2DReader.cs (.../SoilProfile2DReader.cs) (revision abafce00e4098c8041a52f62b3f174c615cf890d) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/SoilProfile/SoilProfile2DReader.cs (.../SoilProfile2DReader.cs) (revision d2b5b334c49948fa49297a1d24c13bc98aa6ee1e) @@ -16,7 +16,7 @@ /// /// Reads information for a profile from the database and creates a based on the information. /// - /// A which is used to read row values from. + /// A which is used to read row values from. /// A new , which is based on the information from the database. /// Thrown when reading the profile encountered an unrecoverable error. /// Thrown when @@ -27,7 +27,7 @@ /// unexpected values were encountered for layer properties /// /// - internal static PipingSoilProfile ReadFrom(IRowBasedReader reader) + internal static PipingSoilProfile ReadFrom(IRowBasedDatabaseReader reader) { var criticalProperties = new CriticalProfileProperties(reader); var requiredProperties = new RequiredProfileProperties(reader, criticalProperties.ProfileName); @@ -66,7 +66,7 @@ /// A column for a layer property did not contain a value of the expected type. /// Thrown when the read geometry does not contain segments that form form a loop for either the inner or outer loop. /// - private static SoilLayer2D ReadPiping2DSoilLayer(IRowBasedReader reader, string profileName) + private static SoilLayer2D ReadPiping2DSoilLayer(IRowBasedDatabaseReader reader, string profileName) { var properties = new LayerProperties(reader, profileName); @@ -97,7 +97,7 @@ /// The to read the geometry value from. /// The profile name used in generating exceptions messages if casting failed. /// - private static byte[] ReadGeometryFrom(IRowBasedReader reader, string profileName) + private static byte[] ReadGeometryFrom(IRowBasedDatabaseReader reader, string profileName) { try { @@ -128,7 +128,7 @@ /// The profile name used in generating exceptions messages if casting failed. /// Thrown when the values in the database could not be /// casted to the expected column types. - internal RequiredProfileProperties(IRowBasedReader reader, string profileName) + internal RequiredProfileProperties(IRowBasedDatabaseReader reader, string profileName) { string readColumn = SoilProfileDatabaseColumns.IntersectionX; try @@ -159,7 +159,7 @@ /// The profile name used in generating exceptions messages if casting failed. /// Thrown when the values in the database could not be /// casted to the expected column types. - internal LayerProperties(IRowBasedReader reader, string profileName) + internal LayerProperties(IRowBasedDatabaseReader reader, string profileName) { string readColumn = SoilProfileDatabaseColumns.IsAquifer; try