public RemoverPaginaFileTransfer( ISsh ssh, IObtemFileTransferDaPaginaServico obtemFileTransferDaPaginaServico, IPaginaRepositorio paginaRepositorio, IGravaLogDaPaginaServico gravaLogDaPaginaServico) { this.ssh = ssh; this.obtemFileTransferDaPaginaServico = obtemFileTransferDaPaginaServico; this.paginaRepositorio = paginaRepositorio; this.gravaLogDaPaginaServico = gravaLogDaPaginaServico; }
public SshBatchProcessor(IFileReader reader = null, ISsh sshComp = null) { fileReader = reader ?? new FileReader(); ssh = sshComp ?? new Ssh(); }
public VoiceRecognizer(IMicrophoneControl microphone, ISpeechRecognizer speechRecognizer, ISsh sshClient) { this._microphone = microphone; this._speechRecognizer = speechRecognizer; this._sshClient = sshClient; }
public VoiceCommandRecognizedEventHandler(ISsh sshClient) { _sshClient = sshClient; this.lastCommandExecutedAt = DateTimeOffset.UtcNow; }