Index: Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/AdoptableFailureMechanismSectionResultEntity.cs =================================================================== diff -u -r329c1c8d9d7c51303bae98c2d6110a8a8e6ad277 -rf71577b710d3f5f09ad2a312c2bb8fee1fc298ea --- Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/AdoptableFailureMechanismSectionResultEntity.cs (.../AdoptableFailureMechanismSectionResultEntity.cs) (revision 329c1c8d9d7c51303bae98c2d6110a8a8e6ad277) +++ Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/AdoptableFailureMechanismSectionResultEntity.cs (.../AdoptableFailureMechanismSectionResultEntity.cs) (revision f71577b710d3f5f09ad2a312c2bb8fee1fc298ea) @@ -30,16 +30,16 @@ namespace Riskeer.Storage.Core.DbContext { - public class AdoptableFailureMechanismSectionResultEntity + public partial class AdoptableFailureMechanismSectionResultEntity { public long AdoptableFailureMechanismSectionResultEntityId { get; set; } public long FailureMechanismSectionEntityId { get; set; } - public byte IsRelevant { get; set; } public byte InitialFailureMechanismResultType { get; set; } + + public virtual FailureMechanismSectionEntity FailureMechanismSectionEntity { get; set; } + public byte IsRelevant { get; set; } public double? ManualInitialFailureMechanismResultSectionProbability { get; set; } public byte FurtherAnalysisType { get; set; } public double? RefinedSectionProbability { get; set; } - - public virtual FailureMechanismSectionEntity FailureMechanismSectionEntity { get; set; } } } \ No newline at end of file Index: Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/AdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs =================================================================== diff -u -r329c1c8d9d7c51303bae98c2d6110a8a8e6ad277 -rf71577b710d3f5f09ad2a312c2bb8fee1fc298ea --- Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/AdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs (.../AdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs) (revision 329c1c8d9d7c51303bae98c2d6110a8a8e6ad277) +++ Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/AdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs (.../AdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs) (revision f71577b710d3f5f09ad2a312c2bb8fee1fc298ea) @@ -30,19 +30,19 @@ namespace Riskeer.Storage.Core.DbContext { - public class AdoptableWithProfileProbabilityFailureMechanismSectionResultEntity + public partial class AdoptableWithProfileProbabilityFailureMechanismSectionResultEntity { public long AdoptableWithProfileProbabilityFailureMechanismSectionResultEntityId { get; set; } public long FailureMechanismSectionEntityId { get; set; } - public byte IsRelevant { get; set; } public byte InitialFailureMechanismResultType { get; set; } - public double? ManualInitialFailureMechanismResultSectionProbability { get; set; } public double? ManualInitialFailureMechanismResultProfileProbability { get; set; } - public byte FurtherAnalysisType { get; set; } public byte ProbabilityRefinementType { get; set; } - public double? RefinedSectionProbability { get; set; } public double? RefinedProfileProbability { get; set; } public virtual FailureMechanismSectionEntity FailureMechanismSectionEntity { get; set; } + public byte IsRelevant { get; set; } + public double? ManualInitialFailureMechanismResultSectionProbability { get; set; } + public byte FurtherAnalysisType { get; set; } + public double? RefinedSectionProbability { get; set; } } } \ No newline at end of file Fisheye: Tag f71577b710d3f5f09ad2a312c2bb8fee1fc298ea refers to a dead (removed) revision in file `Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Interfaces/IAdoptableFailureMechanismSectionResultEntity.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f71577b710d3f5f09ad2a312c2bb8fee1fc298ea refers to a dead (removed) revision in file `Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Interfaces/IAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Interfaces/IFailureMechanismSectionResultEntity.cs =================================================================== diff -u --- Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Interfaces/IFailureMechanismSectionResultEntity.cs (revision 0) +++ Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Interfaces/IFailureMechanismSectionResultEntity.cs (revision f71577b710d3f5f09ad2a312c2bb8fee1fc298ea) @@ -0,0 +1,49 @@ +// Copyright (C) Stichting Deltares 2021. All rights reserved. +// +// This file is part of Riskeer. +// +// Riskeer is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +namespace Riskeer.Storage.Core.DbContext +{ + /// + /// Interface for a failure mechanism section result entity. + /// + public interface IFailureMechanismSectionResultEntity + { + /// + /// Gets or sets whether the section result is relevant. + /// + byte IsRelevant { get; set; } + + /// + /// Gets or sets the value of the manual initial failure mechanism result per failure mechanism section as a probability. + /// + double? ManualInitialFailureMechanismResultSectionProbability { get; set; } + + /// + /// Gets or sets the type used for further analysis. + /// + byte FurtherAnalysisType { get; set; } + + /// + /// Gets or sets the value of the refined probability per failure mechanism section result. + /// + double? RefinedSectionProbability { get; set; } + } +} \ No newline at end of file Fisheye: Tag f71577b710d3f5f09ad2a312c2bb8fee1fc298ea refers to a dead (removed) revision in file `Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Interfaces/INonAdoptableFailureMechanismSectionResultEntity.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f71577b710d3f5f09ad2a312c2bb8fee1fc298ea refers to a dead (removed) revision in file `Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Interfaces/INonAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/NonAdoptableFailureMechanismSectionResultEntity.cs =================================================================== diff -u -r329c1c8d9d7c51303bae98c2d6110a8a8e6ad277 -rf71577b710d3f5f09ad2a312c2bb8fee1fc298ea --- Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/NonAdoptableFailureMechanismSectionResultEntity.cs (.../NonAdoptableFailureMechanismSectionResultEntity.cs) (revision 329c1c8d9d7c51303bae98c2d6110a8a8e6ad277) +++ Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/NonAdoptableFailureMechanismSectionResultEntity.cs (.../NonAdoptableFailureMechanismSectionResultEntity.cs) (revision f71577b710d3f5f09ad2a312c2bb8fee1fc298ea) @@ -30,16 +30,16 @@ namespace Riskeer.Storage.Core.DbContext { - public class NonAdoptableFailureMechanismSectionResultEntity + public partial class NonAdoptableFailureMechanismSectionResultEntity { public long NonAdoptableFailureMechanismSectionResultEntityId { get; set; } public long FailureMechanismSectionEntityId { get; set; } - public byte IsRelevant { get; set; } public byte InitialFailureMechanismResultType { get; set; } + + public virtual FailureMechanismSectionEntity FailureMechanismSectionEntity { get; set; } + public byte IsRelevant { get; set; } public double? ManualInitialFailureMechanismResultSectionProbability { get; set; } public byte FurtherAnalysisType { get; set; } public double? RefinedSectionProbability { get; set; } - - public virtual FailureMechanismSectionEntity FailureMechanismSectionEntity { get; set; } } } \ No newline at end of file Index: Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialAdoptableFailureMechanismSectionResultEntity.cs =================================================================== diff -u --- Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialAdoptableFailureMechanismSectionResultEntity.cs (revision 0) +++ Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialAdoptableFailureMechanismSectionResultEntity.cs (revision f71577b710d3f5f09ad2a312c2bb8fee1fc298ea) @@ -0,0 +1,29 @@ +// Copyright (C) Stichting Deltares 2021. All rights reserved. +// +// This file is part of Riskeer. +// +// Riskeer is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +namespace Riskeer.Storage.Core.DbContext +{ + /// + /// Partial implementation of that implements + /// . + /// + public partial class AdoptableFailureMechanismSectionResultEntity : IFailureMechanismSectionResultEntity {} +} \ No newline at end of file Index: Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs =================================================================== diff -u --- Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs (revision 0) +++ Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs (revision f71577b710d3f5f09ad2a312c2bb8fee1fc298ea) @@ -0,0 +1,29 @@ +// Copyright (C) Stichting Deltares 2021. All rights reserved. +// +// This file is part of Riskeer. +// +// Riskeer is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +namespace Riskeer.Storage.Core.DbContext +{ + /// + /// Partial implementation of that implements + /// . + /// + public partial class AdoptableWithProfileProbabilityFailureMechanismSectionResultEntity : IFailureMechanismSectionResultEntity {} +} \ No newline at end of file Index: Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialNonAdoptableFailureMechanismSectionResultEntity.cs =================================================================== diff -u --- Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialNonAdoptableFailureMechanismSectionResultEntity.cs (revision 0) +++ Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialNonAdoptableFailureMechanismSectionResultEntity.cs (revision f71577b710d3f5f09ad2a312c2bb8fee1fc298ea) @@ -0,0 +1,29 @@ +// Copyright (C) Stichting Deltares 2021. All rights reserved. +// +// This file is part of Riskeer. +// +// Riskeer is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +namespace Riskeer.Storage.Core.DbContext +{ + /// + /// Partial implementation of that implements + /// . + /// + public partial class NonAdoptableFailureMechanismSectionResultEntity : IFailureMechanismSectionResultEntity {} +} \ No newline at end of file Index: Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialNonAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs =================================================================== diff -u -ree3a8443f57a42bcccd7a67051eb27e37f3bfda6 -rf71577b710d3f5f09ad2a312c2bb8fee1fc298ea --- Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialNonAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs (.../PartialNonAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs) (revision ee3a8443f57a42bcccd7a67051eb27e37f3bfda6) +++ Riskeer/Storage/src/Riskeer.Storage.Core/DbContext/Partials/PartialNonAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs (.../PartialNonAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs) (revision f71577b710d3f5f09ad2a312c2bb8fee1fc298ea) @@ -23,7 +23,7 @@ { /// /// Partial implementation of that implements - /// . + /// . /// - public partial class NonAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity : INonAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity {} + public partial class NonAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity : IFailureMechanismSectionResultEntity {} } \ No newline at end of file Fisheye: Tag f71577b710d3f5f09ad2a312c2bb8fee1fc298ea refers to a dead (removed) revision in file `Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/FailureMechanismResults/TestAdoptableFailureMechanismSectionResultEntity.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f71577b710d3f5f09ad2a312c2bb8fee1fc298ea refers to a dead (removed) revision in file `Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/FailureMechanismResults/TestAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f71577b710d3f5f09ad2a312c2bb8fee1fc298ea refers to a dead (removed) revision in file `Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/FailureMechanismResults/TestNonAdoptableFailureMechanismSectionResultEntity.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f71577b710d3f5f09ad2a312c2bb8fee1fc298ea refers to a dead (removed) revision in file `Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/FailureMechanismResults/TestNonAdoptableWithProfileProbabilityFailureMechanismSectionResultEntity.cs'. Fisheye: No comparison available. Pass `N' to diff?