public async Task handshake()
        {
            var names = await _handshakeService.GetMirrorNames();

            _appSettingsService.PutLocalMirrorNames(names);
            _defaultUser.TriggerDefaultUser();
        }
 public void StartApplication()
 {
     if (_appSettingsService.GetLocalMirrorNames() != null)
     {
         _appSettingsService.GetLocalMirrorNames();
         _defaultUserInteractor.TriggerDefaultUser();
     }
     else
     {
         _setupInteractor.SetUpCore();
     }
 }