Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Read/ProjectEntityReadExtensions.cs =================================================================== diff -u -r062281754a35164e1095479c9f1ccb8ee821f939 -rb5297a455bd1aa39cf906780668fbcbfb1155ef3 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Read/ProjectEntityReadExtensions.cs (.../ProjectEntityReadExtensions.cs) (revision 062281754a35164e1095479c9f1ccb8ee821f939) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Read/ProjectEntityReadExtensions.cs (.../ProjectEntityReadExtensions.cs) (revision b5297a455bd1aa39cf906780668fbcbfb1155ef3) @@ -21,30 +21,30 @@ using System; using Application.Ringtoets.Storage.DbContext; -using Core.Common.Base.Data; +using Ringtoets.Integration.Data; namespace Application.Ringtoets.Storage.Read { /// - /// This class defines extension methods for read operations for a based on the + /// This class defines extension methods for read operations for an based on the /// . /// internal static class ProjectEntityReadExtensions { /// - /// Reads the and use the information to construct a . + /// Reads the and use the information to construct a . /// - /// The to create for. + /// The to create for. /// The object keeping track of read operations. - /// A new . + /// A new . /// Thrown when is null. - internal static Project Read(this ProjectEntity entity, ReadConversionCollector collector) + internal static RingtoetsProject Read(this ProjectEntity entity, ReadConversionCollector collector) { if (collector == null) { throw new ArgumentNullException("collector"); } - var project = new Project + var project = new RingtoetsProject { StorageId = entity.ProjectEntityId, Description = entity.Description