コード例 #1
0
ファイル: WindowsService.cs プロジェクト: svoruganti/bounce
 public WindowsService(IShellCommandExecutor shellCommandExecutor)
 {
     ShellCommandExecutor = shellCommandExecutor;
 }
コード例 #2
0
 private void BuildShellCommandExecutor()
 {
     _shellCommandExecutor = new ShellCommandExecutor();
 }
コード例 #3
0
 public YtdlWrapper(IShellCommandExecutor shellCommandExecutor, VidloadConfiguration vidloadConfiguration)
 {
     _shellCommandExecutor = shellCommandExecutor;
     _vidloadConfiguration = vidloadConfiguration;
 }
コード例 #4
0
 public LocalChromeDriverInfo(DirectoryInfo directoryWithDriver, IShellCommandExecutor shellCommandExecutor)
 {
     _directoryWithDriver  = directoryWithDriver;
     _shellCommandExecutor = shellCommandExecutor;
 }
コード例 #5
0
ファイル: GitCommand.cs プロジェクト: svoruganti/bounce
 public GitCommand(IShellCommandExecutor shellCommandExecutor)
 {
     ShellCommandExecutor = shellCommandExecutor;
 }
コード例 #6
0
 public LocalChromeDriverFinder(IFileSystemWrapper fileSystemWrapper, IShellCommandExecutor shellCommandExecutor)
 {
     _fileSystemWrapper    = fileSystemWrapper;
     _shellCommandExecutor = shellCommandExecutor;
 }