public void SetCurrentConnection(CrmConnection connection)
 {
     Logger.WriteLine($"Changing current connection to {connection.Identifier}");
     TryGetServiceFromCache(connection);
     _currentConnection = connection;
 }
 public void SetAdminConnection(CrmConnection connection)
 {
     Logger.WriteLine($"Changing admin connection to {connection.Identifier}");
     TryGetServiceFromCache(connection);
     _adminConnection = connection;
 }