Exemplo n.º 1
0
 public ClientHost(IOptionParser optionParser, IRestClientProtocol clientProtocol, IRestDataTransferProtocol dataTransferProtocol, ICommandDispatcher commandDispatcher, ICommandFactory commandFactory)
 {
     _optionParser         = optionParser;
     _clientProtocol       = clientProtocol;
     _dataTransferProtocol = dataTransferProtocol;
     _commandDispatcher    = commandDispatcher;
     _commandFactory       = commandFactory;
 }
Exemplo n.º 2
0
 public DeleteCommandHandler(IRestClientProtocol clientProtocol)
 {
     _clientProtocol = clientProtocol;
 }
Exemplo n.º 3
0
 public MkdirCommandHandler(IRestClientProtocol clientProtocol)
 {
     _clientProtocol = clientProtocol;
 }
Exemplo n.º 4
0
 public ListingCommandHandler(IRestClientProtocol clientProtocol, IConsole console)
 {
     _clientProtocol = clientProtocol;
     _console        = console;
 }
Exemplo n.º 5
0
 public PutCommandHandler(IRestClientProtocol clientProtocol, IRestDataTransferProtocol dataTransferProtocol)
 {
     _clientProtocol       = clientProtocol;
     _dataTransferProtocol = dataTransferProtocol;
 }