Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Converters/IEntityConverter.cs =================================================================== diff -u -r4670af35a2cb3c8b78d68a25804c3b620da19ddb -rd242e89e13ef602facae6a1ef91660242bcef340 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Converters/IEntityConverter.cs (.../IEntityConverter.cs) (revision 4670af35a2cb3c8b78d68a25804c3b620da19ddb) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Converters/IEntityConverter.cs (.../IEntityConverter.cs) (revision d242e89e13ef602facae6a1ef91660242bcef340) @@ -19,9 +19,6 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using System; -using Core.Common.Base.Storage; - namespace Application.Ringtoets.Storage.Converters { /// @@ -30,12 +27,11 @@ public interface IEntityConverter where TEntity : class { /// - /// Converts to . + /// Creates a new instance of based on information on . /// /// The to convert. - /// The to obtain the model. - /// A new instance of , based on the properties of . - TModel ConvertEntityToModel(TEntity entity, Func model); + /// A new instance of type . + TModel ConvertEntityToModel(TEntity entity); /// /// Converts to .