Example #1
0
 public AcmeClient(
     IInputService inputService,
     IArgumentsService arguments,
     ILogService log,
     ISettingsService settings,
     ProxyService proxy,
     ZeroSsl zeroSsl)
 {
     _log              = log;
     _settings         = settings;
     _arguments        = arguments;
     _input            = inputService;
     _proxyService     = proxy;
     _accountArguments = _arguments.GetArguments <AccountArguments>() ?? new AccountArguments();
     _zeroSsl          = zeroSsl;
 }