Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Create/PersistenceRegistry.cs =================================================================== diff -u -r268d5940d8ed4a65319179de7515eaf89586ad0a -r8e213638a22dd9f04d965d875bb58156db019be5 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Create/PersistenceRegistry.cs (.../PersistenceRegistry.cs) (revision 268d5940d8ed4a65319179de7515eaf89586ad0a) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Create/PersistenceRegistry.cs (.../PersistenceRegistry.cs) (revision 8e213638a22dd9f04d965d875bb58156db019be5) @@ -78,11 +78,11 @@ private readonly Dictionary macroStabilityInwardsStochasticSoilProfiles = CreateDictionary(); - private readonly Dictionary macroStabilityInwardsSoil1DProfiles = - CreateDictionary(); + private readonly Dictionary macroStabilityInwardsSoil1DProfiles = + CreateDictionary(); - private readonly Dictionary macroStabilityInwardsSoil2DProfiles = - CreateDictionary(); + private readonly Dictionary macroStabilityInwardsSoil2DProfiles = + CreateDictionary(); private readonly Dictionary macroStabilityInwardsSurfaceLines = CreateDictionary(); @@ -273,7 +273,7 @@ { Register(pipingSoilProfiles, entity, model); } - + /// /// Registers a create operation for and the /// that was constructed with the information. @@ -285,7 +285,7 @@ { Register(pipingSurfaceLines, entity, model); } - + /// /// Registers a create operation for and the /// that was constructed with the information. @@ -314,10 +314,10 @@ /// Registers a create operation for and the /// that was constructed with the information. /// - /// The to be registered. + /// The to be registered. /// The to be registered. /// Thrown any of the input parameters is null. - internal void Register(MacroStabilityInwardsSoilProfile1DEntity entity, MacroStabilityInwardsSoilProfile1D model) + internal void Register(MacroStabilityInwardsSoilProfileOneDEntity entity, MacroStabilityInwardsSoilProfile1D model) { Register(macroStabilityInwardsSoil1DProfiles, entity, model); } @@ -326,10 +326,10 @@ /// Registers a create operation for and the /// that was constructed with the information. /// - /// The to be registered. + /// The to be registered. /// The to be registered. /// Thrown any of the input parameters is null. - internal void Register(MacroStabilityInwardsSoilProfile2DEntity entity, MacroStabilityInwardsSoilProfile2D model) + internal void Register(MacroStabilityInwardsSoilProfileTwoDEntity entity, MacroStabilityInwardsSoilProfile2D model) { Register(macroStabilityInwardsSoil2DProfiles, entity, model); } @@ -460,7 +460,7 @@ { return ContainsValue(pipingSoilProfiles, model); } - + /// /// Checks whether a create operations has been registered for the given . /// @@ -471,7 +471,7 @@ { return ContainsValue(pipingSurfaceLines, model); } - + /// /// Checks whether a create operations has been registered for the given . /// @@ -526,7 +526,7 @@ { return ContainsValue(macroStabilityInwardsSurfaceLines, model); } - + /// /// Checks whether a create operations has been registered for the given . /// @@ -783,35 +783,35 @@ } /// - /// Obtains the which was registered for the given + /// Obtains the which was registered for the given /// . /// - /// The for which a create + /// The for which a create /// operation has been registered. /// The constructed . /// Thrown when is null. /// Thrown when no create operation /// has been registered for . /// Use to find out whether a /// create operation has been registered for . - internal MacroStabilityInwardsSoilProfile1DEntity Get(MacroStabilityInwardsSoilProfile1D model) + internal MacroStabilityInwardsSoilProfileOneDEntity Get(MacroStabilityInwardsSoilProfile1D model) { return Get(macroStabilityInwardsSoil1DProfiles, model); } /// - /// Obtains the which was registered for the given + /// Obtains the which was registered for the given /// . /// - /// The for which a create + /// The for which a create /// operation has been registered. /// The constructed . /// Thrown when is null. /// Thrown when no create operation /// has been registered for . /// Use to find out whether a /// create operation has been registered for . - internal MacroStabilityInwardsSoilProfile2DEntity Get(MacroStabilityInwardsSoilProfile2D model) + internal MacroStabilityInwardsSoilProfileTwoDEntity Get(MacroStabilityInwardsSoilProfile2D model) { return Get(macroStabilityInwardsSoil2DProfiles, model); }