using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.ValueObjects; namespace Tango.BL.ActionLogs { /// /// Represents an comparer. /// public interface IActionLogComparer { /// /// Compares the specified object before and after changes and returns the difference tree. /// /// The object before the change. /// The object after the change. /// Task Compare(IActionLogComparable before, IActionLogComparable after); } }