Exemplo n.º 1
0
 public gStorageManagerService(
     ICheckClientProxy checkClientProxy,
     IUploadOptsClientProxy uploadOptsProxy,
     IHardwareOptsClientProxy hardwareProxy,
     IStorageHealthClientProxy healthClientProxy,
     ILogger <gStorageManagerService> logger)
 {
     _logger              = logger;
     _checkClientCommand  = checkClientProxy as ICheckClientCommand;
     _hardwareOptsCmd     = hardwareProxy as IHardwareOptsClientCommand;
     _uploadOptsCommand   = uploadOptsProxy as IUploadOptsClientCommand;
     _healthClientCommand = healthClientProxy as IStorageHealthClientCommand;
 }
Exemplo n.º 2
0
 public StartableServices(ICheckClientProxy checkProxy, IStorageHealthClientProxy healthProxy)
 {
     _checkClientCommand   = checkProxy as ICheckClientCommand;
     _storageHealthCommand = healthProxy as IStorageHealthClientCommand;
 }