using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Synchronization { /// /// Represents a database comparison engine. /// /// public interface IDBComparer : IDisposable { /// /// Used to notify about the comparer progress using text messages. /// event EventHandler Progress; /// /// Performs a database comparison and returns a set of differences. /// /// List Compare(); } }