aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/ActionLogs/IActionLogComparer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/ActionLogs/IActionLogComparer.cs')
-rw-r--r--Software/Visual_Studio/Tango.BL/ActionLogs/IActionLogComparer.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/Software/Visual_Studio/Tango.BL/ActionLogs/IActionLogComparer.cs b/Software/Visual_Studio/Tango.BL/ActionLogs/IActionLogComparer.cs
deleted file mode 100644
index 94db259b0..000000000
--- a/Software/Visual_Studio/Tango.BL/ActionLogs/IActionLogComparer.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.BL.ValueObjects;
-
-namespace Tango.BL.ActionLogs
-{
- /// <summary>
- /// Represents an <see cref="IActionLogComparable"/> comparer.
- /// </summary>
- public interface IActionLogComparer
- {
- /// <summary>
- /// Compares the specified object before and after changes and returns the difference tree.
- /// </summary>
- /// <param name="before">The object before the change.</param>
- /// <param name="after">The object after the change.</param>
- /// <returns></returns>
- Task<ActionLogDifference> Compare(IActionLogComparable before, IActionLogComparable after);
- }
-}