public NoSqlArchiver(INoSqlConnect originServer, INoSqlConnect archiveServer) : base(originServer) { OriginServer = originServer; ArchiveServer = archiveServer; if (OriginServer == null || ArchiveServer == null) throw new ArgumentNullException("Servers must not be null"); }
public NoSqlRemover(INoSqlConnect connection) { _connection = connection; if (_connection == null) throw new ArgumentNullException("Collection must not be null"); }
public NoSqlArchiver(INoSqlConnect originServer) : this(originServer, new NoSqlArchiveConnect()) { }
public NoSqlReportAggregator(INoSqlConnect connector, IMongoIdentity user) : base(connector) { User = user; Connector = connector; }