public MutableCollection(IValueAD root, Factories.DataTreeFactory dataTreeFactory) { _root = root; _dataTreeFactory = dataTreeFactory; }
public StreamCollectionFactory(IMdNodeFactory nodeFactory, DataTreeFactory dataTreeFactory) { _nodeFactory = nodeFactory; _dataTreeFactory = dataTreeFactory; }
public StreamCollection(IValueAD root, Factories.DataTreeFactory dataTreeFactory) => _collection = new MutableCollection <StreamType>(root, dataTreeFactory);