Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Read/MacrostabilityInwardsSectionResultEntityReadExtensions.cs =================================================================== diff -u -r3fb0df0ed6e64657154700ee7706e035d5bf99f5 -r5e4beb9beb7bea77b9abf140747b9916211b49d7 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Read/MacrostabilityInwardsSectionResultEntityReadExtensions.cs (.../MacrostabilityInwardsSectionResultEntityReadExtensions.cs) (revision 3fb0df0ed6e64657154700ee7706e035d5bf99f5) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Read/MacrostabilityInwardsSectionResultEntityReadExtensions.cs (.../MacrostabilityInwardsSectionResultEntityReadExtensions.cs) (revision 5e4beb9beb7bea77b9abf140747b9916211b49d7) @@ -23,33 +23,32 @@ using Application.Ringtoets.Storage.DbContext; using Core.Common.Base.Data; using Ringtoets.Common.Data.FailureMechanism; -using Ringtoets.Integration.Data.StandAlone.SectionResults; +using Ringtoets.MacroStabilityInwards.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 a based on the /// . /// internal static class MacrostabilityInwardsSectionResultEntityReadExtensions { /// /// Reads the and use the information to update a - /// . + /// . /// - /// The to create for. + /// The to create for. /// The target of the read operation. - /// A new . + /// A new . /// Thrown when is null. - internal static void Read(this MacrostabilityInwardsSectionResultEntity entity, MacrostabilityInwardsFailureMechanismSectionResult sectionResult) + internal static void Read(this MacrostabilityInwardsSectionResultEntity entity, MacroStabilityInwardsFailureMechanismSectionResult sectionResult) { if (sectionResult == null) { throw new ArgumentNullException(nameof(sectionResult)); } sectionResult.AssessmentLayerOne = (AssessmentLayerOneState) entity.LayerOne; - sectionResult.AssessmentLayerTwoA = (RoundedDouble) entity.LayerTwoA.ToNullAsNaN(); sectionResult.AssessmentLayerThree = (RoundedDouble) entity.LayerThree.ToNullAsNaN(); } }