public IndexerColoredTransactionRepository(IndexerConfiguration config)
 {
     if (config == null)
         throw new ArgumentNullException("config");
     _Configuration = config;
     _Transactions = new IndexerTransactionRepository(config);
 }
 public IndexerColoredTransactionRepository(IndexerConfiguration config)
 {
     if (config == null)
     {
         throw new ArgumentNullException("config");
     }
     _Configuration = config;
     _Transactions  = new IndexerTransactionRepository(config);
 }