protected DataConfiguratorCollectionBase(IDataConfiguratorCollectionFactory dataConfiguratorCollectionFactory, IConverterCollectionFactory converterCollectionFactory, IPathFormatterCollection pathFormatterCollection)
 {
     this.dataConfiguratorCollectionFactory = dataConfiguratorCollectionFactory;
     this.converterCollectionFactory        = converterCollectionFactory;
     this.pathFormatterCollection           = pathFormatterCollection;
 }
 public TestDataConfiguratorCollection(IDataConfiguratorCollectionFactory dataConfiguratorCollectionFactory, IConverterCollectionFactory converterCollectionFactory, IPathFormatterCollection pathFormatterCollection, Action <MutatorsConfigurator <TData> > action)
     : base(dataConfiguratorCollectionFactory, converterCollectionFactory, pathFormatterCollection)
 {
     this.action = action;
 }