From 45a7a7319bbae1a2ab5cfc93d7a2507cccd8770e Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Tue, 1 Dec 2020 07:40:45 +0200 Subject: Implemented action logs for data store. --- Software/Visual_Studio/Tango.BL/ObservableEntityDTO.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'Software/Visual_Studio/Tango.BL/ObservableEntityDTO.cs') diff --git a/Software/Visual_Studio/Tango.BL/ObservableEntityDTO.cs b/Software/Visual_Studio/Tango.BL/ObservableEntityDTO.cs index 9b8aa0687..1c3edac82 100644 --- a/Software/Visual_Studio/Tango.BL/ObservableEntityDTO.cs +++ b/Software/Visual_Studio/Tango.BL/ObservableEntityDTO.cs @@ -106,6 +106,8 @@ namespace Tango.BL } } + dto.OnFromObservableCompleted(observable); + return dto; } @@ -319,5 +321,14 @@ namespace Tango.BL { return this.GetType().Name; } + + /// + /// Called when the static method completes. + /// + /// The observable. + protected virtual void OnFromObservableCompleted(T observable) + { + //Just for override + } } } -- cgit v1.3.1