public SpotifyAcountViewModel(IRegionManager rm, ILoggerFacade logger,
                               ISpotifyUserService userService, IDialogService dialog, IThreadHelper threadHelper, IQueueController queueController)
 {
     _queueController     = queueController;
     _regionManager       = rm;
     _logger              = logger;
     _userService         = userService;
     _dialog              = dialog;
     _threadHelper        = threadHelper;
     ShowSearchCommand    = new DelegateCommand(ExecuteSearch);
     TryConnectApiCommand = new DelegateCommand(ExecuteConnectApi);
     AddSongCommand       = new DelegateCommand(ExecuteAddSong);
 }
Example #2
0
 public GetUserInfoQueryHandler(ISpotifyUserService spotifyService)
 {
     _spotifyService = spotifyService;
 }
Example #3
0
 public ProfileModel(ISpotifyPlaylistService spotifyPlaylists,
                     ISpotifyUserService spotifyUsers)
 {
     _spotifyPlaylists = spotifyPlaylists;
     _spotifyUsers     = spotifyUsers;
 }