Example #1
0
 public InitResponse(DTOBase currentWorkingDirectory, Options options)
     : base(currentWorkingDirectory)
 {
     Options = options;
 }
Example #2
0
 public OpenResponse(DTOBase currentWorkingDirectory, FullPath fullPath)
     : base(currentWorkingDirectory)
 {
     Options = new Options(fullPath);
     _files.Add(currentWorkingDirectory);
 }
Example #3
0
 public InitResponse(DTOBase currentWorkingDirectory)
     : base(currentWorkingDirectory)
 {
     Options = new Options();
 }
 public OpenResponseBase(DTOBase currentWorkingDirectory)
 {
     _files = new List<DTOBase>();
     _currentWorkingDirectory = currentWorkingDirectory;
 }
Example #5
0
 public void AddResponse(DTOBase item)
 {
     _files.Add(item);
 }