Beispiel #1
0
 public WindowsService(IShellCommandExecutor shellCommandExecutor)
 {
     ShellCommandExecutor = shellCommandExecutor;
 }
 private void BuildShellCommandExecutor()
 {
     _shellCommandExecutor = new ShellCommandExecutor();
 }
Beispiel #3
0
 public YtdlWrapper(IShellCommandExecutor shellCommandExecutor, VidloadConfiguration vidloadConfiguration)
 {
     _shellCommandExecutor = shellCommandExecutor;
     _vidloadConfiguration = vidloadConfiguration;
 }
Beispiel #4
0
 public LocalChromeDriverInfo(DirectoryInfo directoryWithDriver, IShellCommandExecutor shellCommandExecutor)
 {
     _directoryWithDriver  = directoryWithDriver;
     _shellCommandExecutor = shellCommandExecutor;
 }
Beispiel #5
0
 public GitCommand(IShellCommandExecutor shellCommandExecutor)
 {
     ShellCommandExecutor = shellCommandExecutor;
 }
Beispiel #6
0
 public LocalChromeDriverFinder(IFileSystemWrapper fileSystemWrapper, IShellCommandExecutor shellCommandExecutor)
 {
     _fileSystemWrapper    = fileSystemWrapper;
     _shellCommandExecutor = shellCommandExecutor;
 }