Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Create/PersistenceRegistry.cs =================================================================== diff -u -r070c0400906eb4cfbd4fdcfbf1e49d4dfeec7856 -r7e027e29474068f4fc2f74f97793773fe5ec57a3 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Create/PersistenceRegistry.cs (.../PersistenceRegistry.cs) (revision 070c0400906eb4cfbd4fdcfbf1e49d4dfeec7856) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Create/PersistenceRegistry.cs (.../PersistenceRegistry.cs) (revision 7e027e29474068f4fc2f74f97793773fe5ec57a3) @@ -87,8 +87,8 @@ private readonly Dictionary macroStabilityInwardsSurfaceLines = CreateDictionary(); - private readonly Dictionary hydraulicLocations = - CreateDictionary(); + private readonly Dictionary hydraulicLocations = + CreateDictionary(); private readonly Dictionary duneLocations = CreateDictionary(); @@ -833,9 +833,9 @@ /// has been registered for . /// Use to find out /// whether a create operation has been registered for . - internal T Get(HydraulicBoundaryLocation model) where T : class + internal HydraulicLocationEntity Get(HydraulicBoundaryLocation model) { - return Get(hydraulicLocations, model) as T; + return Get(hydraulicLocations, model); } ///