Ejemplo n.º 1
0
 public DeviceSocket(ConfigService configService,
                     Uninstaller uninstaller,
                     CommandExecutor commandExecutor,
                     ScriptRunner scriptRunner,
                     AppLauncher appLauncher,
                     ChatClientService chatService)
 {
     ConfigService   = configService;
     Uninstaller     = uninstaller;
     CommandExecutor = commandExecutor;
     ScriptRunner    = scriptRunner;
     AppLauncher     = appLauncher;
     ChatService     = chatService;
 }
Ejemplo n.º 2
0
 public AgentSocket(ConfigService configService,
                    Uninstaller uninstaller,
                    CommandExecutor commandExecutor,
                    ScriptRunner scriptRunner,
                    ChatClientService chatService,
                    IAppLauncher appLauncher,
                    IUpdater updater)
 {
     ConfigService   = configService;
     Uninstaller     = uninstaller;
     CommandExecutor = commandExecutor;
     ScriptRunner    = scriptRunner;
     AppLauncher     = appLauncher;
     ChatService     = chatService;
     Updater         = updater;
 }
Ejemplo n.º 3
0
 public AgentSocket(ConfigService configService,
                    Uninstaller uninstaller,
                    ScriptExecutor scriptExecutor,
                    ChatClientService chatService,
                    IAppLauncher appLauncher,
                    IUpdater updater,
                    IDeviceInformationService deviceInfoService)
 {
     _configService     = configService;
     _uninstaller       = uninstaller;
     _scriptExecutor    = scriptExecutor;
     _appLauncher       = appLauncher;
     _chatService       = chatService;
     _updater           = updater;
     _deviceInfoService = deviceInfoService;
 }