aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Synchronization/ISqlDataBase.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2017-11-26 17:23:38 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2017-11-26 17:23:38 +0200
commit262c1efc9d53b8b70fe677dc7d2d173896ffcee8 (patch)
treee404dc914bee89101f50963ff018225c897244fd /Software/Visual_Studio/Tango.Synchronization/ISqlDataBase.cs
parent0a8af16821cfbb52fe02881921695d378f6578d7 (diff)
downloadTango-262c1efc9d53b8b70fe677dc7d2d173896ffcee8.tar.gz
Tango-262c1efc9d53b8b70fe677dc7d2d173896ffcee8.zip
Implemented Tango SQLite DB Synchronizer.
Diffstat (limited to 'Software/Visual_Studio/Tango.Synchronization/ISqlDataBase.cs')
-rw-r--r--Software/Visual_Studio/Tango.Synchronization/ISqlDataBase.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Synchronization/ISqlDataBase.cs b/Software/Visual_Studio/Tango.Synchronization/ISqlDataBase.cs
index f087dfd15..fa4e018be 100644
--- a/Software/Visual_Studio/Tango.Synchronization/ISqlDataBase.cs
+++ b/Software/Visual_Studio/Tango.Synchronization/ISqlDataBase.cs
@@ -24,6 +24,11 @@ namespace Tango.Synchronization
List<DataTable> Tables { get; }
/// <summary>
+ /// Loads the tables (Must be done before any synchronization).
+ /// </summary>
+ void LoadTables();
+
+ /// <summary>
/// Clones a table from another database into this database.
/// </summary>
/// <param name="otherDB">The other database.</param>