aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Synchronization/Remote
diff options
context:
space:
mode:
authorRoy <roy.mail.net@gmail.com>2018-01-20 21:30:53 +0200
committerRoy <roy.mail.net@gmail.com>2018-01-20 21:30:53 +0200
commitbc2d3eb5ec8c7176627dcb8f5c02cc085b2db584 (patch)
treee2d690486b4546fc73e81cfbe15526a36b86e232 /Software/Visual_Studio/Tango.Synchronization/Remote
parent215127ecf2b971a7164ab303f09de74e56c970f4 (diff)
downloadTango-bc2d3eb5ec8c7176627dcb8f5c02cc085b2db584.tar.gz
Tango-bc2d3eb5ec8c7176627dcb8f5c02cc085b2db584.zip
Implemented new CATS.
Implemented Process Parameters View on DB Module. Implemented RML Process Parameters View on DB Module. Modified DB Module table initials letter casing. Moved observables generator to CLI.
Diffstat (limited to 'Software/Visual_Studio/Tango.Synchronization/Remote')
-rw-r--r--Software/Visual_Studio/Tango.Synchronization/Remote/RemoteDBComparer.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/Software/Visual_Studio/Tango.Synchronization/Remote/RemoteDBComparer.cs b/Software/Visual_Studio/Tango.Synchronization/Remote/RemoteDBComparer.cs
index 0b4731ddf..af10f9637 100644
--- a/Software/Visual_Studio/Tango.Synchronization/Remote/RemoteDBComparer.cs
+++ b/Software/Visual_Studio/Tango.Synchronization/Remote/RemoteDBComparer.cs
@@ -68,8 +68,8 @@ namespace Tango.Synchronization.Remote
var local_users = _localDB.USERS.ToList();
LogManager.Log("Querying all local users roles...");
var local_users_roles = _localDB.USERS_ROLES.ToList();
- LogManager.Log("Querying all CATS...");
- var local_cats = _localDB.CATS.ToList();
+ //LogManager.Log("Querying all CATS...");
+ //var local_cats = _localDB.CATS.ToList();
LogManager.Log("Loading SQL Server database to memory...");
@@ -125,9 +125,9 @@ namespace Tango.Synchronization.Remote
guids = remote_ids_packs.Select(x => x.CARTRIDGE_TYPE_GUID).ToList();
var remote_cartridges_types = _remoteDB.CARTRIDGE_TYPES.Where(x => guids.Contains(x.GUID)).ToList();
- LogManager.Log("Querying all remote CATS...");
- guids = remote_machines.Select(x => x.GUID).ToList();
- var remote_cats = _remoteDB.CATS.Where(x => guids.Contains(x.MACHINE_GUID)).ToList();
+ //LogManager.Log("Querying all remote CATS...");
+ //guids = remote_machines.Select(x => x.GUID).ToList();
+ //var remote_cats = _remoteDB.CATS.Where(x => guids.Contains(x.MACHINE_GUID)).ToList();
foreach (var config in _remoteDB.SYNC_CONFIGURATIONS.Where(x => (SyncConfiguration)x.SYNC_TYPE == SyncConfiguration.OverwriteLocal))
@@ -166,8 +166,8 @@ namespace Tango.Synchronization.Remote
LogManager.Log("Comparing users roles");
CompareCollections(remote_users_roles, local_users_roles, _remoteDB.USERS_ROLES, _localDB.USERS_ROLES);
- LogManager.Log("Comparing cats");
- CompareCollections(remote_cats, local_cats, _remoteDB.CATS, _localDB.CATS);
+ //LogManager.Log("Comparing cats");
+ //CompareCollections(remote_cats, local_cats, _remoteDB.CATS, _localDB.CATS);
LogManager.Log("Comparison done!");