public void AddReplication(ReplicationCommand command) { if (!_databases.ContainsKey(command.DatabaseName)) throw new ReplicationFactoryException(string.Format("Database not found, or not attached: {0}", command.DatabaseName)); var database = _databases[command.DatabaseName]; }
public void RemoveReplication(ReplicationCommand command) { }