Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Read/ReadConversionCollector.cs =================================================================== diff -u -r8c6f5442c5e135d2ef3a67161b7d4d5c24fb21a2 -r8e213638a22dd9f04d965d875bb58156db019be5 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Read/ReadConversionCollector.cs (.../ReadConversionCollector.cs) (revision 8c6f5442c5e135d2ef3a67161b7d4d5c24fb21a2) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Read/ReadConversionCollector.cs (.../ReadConversionCollector.cs) (revision 8e213638a22dd9f04d965d875bb58156db019be5) @@ -56,11 +56,11 @@ private readonly Dictionary surfaceLines = CreateDictionary(); - private readonly Dictionary macroStabilityInwardsSoil1DProfiles = - CreateDictionary(); + private readonly Dictionary macroStabilityInwardsSoil1DProfiles = + CreateDictionary(); - private readonly Dictionary macroStabilityInwardsSoil2DProfiles = - CreateDictionary(); + private readonly Dictionary macroStabilityInwardsSoil2DProfiles = + CreateDictionary(); private readonly Dictionary hydraulicBoundaryLocations = CreateDictionary(); @@ -376,16 +376,16 @@ #endregion - #region MacroStabilityInwardsSoilProfile1DEntity: Read, Contains, Get + #region MacroStabilityInwardsSoilProfileOneDEntity: Read, Contains, Get /// - /// Registers a read operation for and the + /// Registers a read operation for and the /// that was constructed with the information. /// - /// The that was read. + /// The that was read. /// The that was constructed. /// Thrown when any of the input parameters is null. - internal void Read(MacroStabilityInwardsSoilProfile1DEntity entity, MacroStabilityInwardsSoilProfile1D model) + internal void Read(MacroStabilityInwardsSoilProfileOneDEntity entity, MacroStabilityInwardsSoilProfile1D model) { if (entity == null) { @@ -400,12 +400,12 @@ } /// - /// Checks whether a read operation has been registered for a given . + /// Checks whether a read operation has been registered for a given . /// - /// The to check for. + /// The to check for. /// true if the was read before, false otherwise. /// Thrown when is null. - internal bool Contains(MacroStabilityInwardsSoilProfile1DEntity entity) + internal bool Contains(MacroStabilityInwardsSoilProfileOneDEntity entity) { if (entity == null) { @@ -416,17 +416,17 @@ /// /// Obtains the which was read for the - /// given . + /// given . /// - /// The for which a read operation + /// The for which a read operation /// has been registered. /// The constructed . /// Thrown when is null. /// Thrown when no read operation has /// been registered for . - /// Use to find out whether a + /// Use to find out whether a /// read operation has been registered for . - internal MacroStabilityInwardsSoilProfile1D Get(MacroStabilityInwardsSoilProfile1DEntity entity) + internal MacroStabilityInwardsSoilProfile1D Get(MacroStabilityInwardsSoilProfileOneDEntity entity) { if (entity == null) { @@ -444,16 +444,16 @@ #endregion - #region MacroStabilityInwardsSoilProfile2DEntity: Read, Contains, Get + #region MacroStabilityInwardsSoilProfileTwoDEntity: Read, Contains, Get /// - /// Registers a read operation for and the + /// Registers a read operation for and the /// that was constructed with the information. /// - /// The that was read. + /// The that was read. /// The that was constructed. /// Thrown when any of the input parameters is null. - internal void Read(MacroStabilityInwardsSoilProfile2DEntity entity, MacroStabilityInwardsSoilProfile2D model) + internal void Read(MacroStabilityInwardsSoilProfileTwoDEntity entity, MacroStabilityInwardsSoilProfile2D model) { if (entity == null) { @@ -468,12 +468,12 @@ } /// - /// Checks whether a read operation has been registered for a given . + /// Checks whether a read operation has been registered for a given . /// - /// The to check for. + /// The to check for. /// true if the was read before, false otherwise. /// Thrown when is null. - internal bool Contains(MacroStabilityInwardsSoilProfile2DEntity entity) + internal bool Contains(MacroStabilityInwardsSoilProfileTwoDEntity entity) { if (entity == null) { @@ -484,17 +484,17 @@ /// /// Obtains the which was read for the - /// given . + /// given . /// - /// The for which a read operation + /// The for which a read operation /// has been registered. /// The constructed . /// Thrown when is null. /// Thrown when no read operation has /// been registered for . - /// Use to find out whether a + /// Use to find out whether a /// read operation has been registered for . - internal MacroStabilityInwardsSoilProfile2D Get(MacroStabilityInwardsSoilProfile2DEntity entity) + internal MacroStabilityInwardsSoilProfile2D Get(MacroStabilityInwardsSoilProfileTwoDEntity entity) { if (entity == null) {