public WorkspacePathMapper(INetfoxSettings netfoxSettings)
 {
     this._netfoxSettings = netfoxSettings ?? throw new ArgumentNullException(nameof(netfoxSettings));
 }
Exemplo n.º 2
0
 public WorkspacePathSerializationPersistor(INetfoxSettings netfoxSettings, ISerializerFactory serializerFactory, WorkspacePathMapper workspacePathMapper)
 {
     this._netfoxSettings      = netfoxSettings ?? throw new ArgumentNullException(nameof(netfoxSettings));
     this._serializerFactory   = serializerFactory ?? throw new ArgumentNullException(nameof(serializerFactory));
     this._workspacePathMapper = workspacePathMapper ?? throw new ArgumentNullException(nameof(_workspacePathMapper));
 }
Exemplo n.º 3
0
 public WorkspaceSerializationPersistor(INetfoxSettings netfoxSettings, IFileSystem fileSystem, ISerializerFactory serializerFactory)
 {
     this._netfoxSettings    = netfoxSettings ?? throw new ArgumentNullException(nameof(netfoxSettings));
     this._fileSystem        = fileSystem ?? throw new ArgumentNullException(nameof(fileSystem));
     this._serializerFactory = serializerFactory ?? throw new ArgumentNullException(nameof(serializerFactory));
 }