Index: Riskeer/Common/src/Riskeer.Common.Forms/ChangeHandlers/ClearIllustrationPointsOfCalculationCollectionChangeHandlerBase.cs
===================================================================
diff -u -re8ef88fcdd082e97681b264d849c1faf9b86457b -r1c916a9fcd406aa21e10941d8ff819c60d027221
--- Riskeer/Common/src/Riskeer.Common.Forms/ChangeHandlers/ClearIllustrationPointsOfCalculationCollectionChangeHandlerBase.cs (.../ClearIllustrationPointsOfCalculationCollectionChangeHandlerBase.cs) (revision e8ef88fcdd082e97681b264d849c1faf9b86457b)
+++ Riskeer/Common/src/Riskeer.Common.Forms/ChangeHandlers/ClearIllustrationPointsOfCalculationCollectionChangeHandlerBase.cs (.../ClearIllustrationPointsOfCalculationCollectionChangeHandlerBase.cs) (revision 1c916a9fcd406aa21e10941d8ff819c60d027221)
@@ -29,7 +29,7 @@
///
/// Base class for handling clearing illustration points from collections of calculations.
///
- public abstract class ClearIllustrationPointsOfCalculationCollectionChangeHandlerBase
+ public abstract class ClearIllustrationPointsOfCalculationCollectionChangeHandlerBase
: IClearIllustrationPointsOfCalculationCollectionChangeHandler
{
private readonly IInquiryHelper inquiryHelper;
@@ -49,17 +49,17 @@
this.inquiryHelper = inquiryHelper;
}
- ///
- /// Gets the message that should be displayed when inquiring the confirmation.
- ///
- /// The message that should be displayed when inquiring the confirmation.
- protected abstract string GetConfirmationMessage();
-
public bool InquireConfirmation()
{
return inquiryHelper.InquireContinuation(GetConfirmationMessage());
}
public abstract IEnumerable ClearIllustrationPoints();
+
+ ///
+ /// Gets the message that should be displayed when inquiring the confirmation.
+ ///
+ /// The message that should be displayed when inquiring the confirmation.
+ protected abstract string GetConfirmationMessage();
}
}
\ No newline at end of file