public SpotifyArtistViewModel(ISpotifyService service, IScrobblerService scrobbler, SettingViewModel settingViewModel) { _service = service; _scrobbler = scrobbler; _songClickRelayCommand = new Command <ItemClickEventArgs>(SongClickExecute); SettingViewModel = settingViewModel; }
public CollectionArtistViewModel(ICollectionService service, CollectionCommandHelper commands, SettingViewModel settingViewModel) { _service = service; _commands = commands; _songClickCommand = new Command <ItemClickEventArgs>(SongClickExecute); SettingViewModel = settingViewModel; }