Example #1
0
        public override void FollowArtist()
        {
            IsHighlighted = true;

            if (!SpotifyCacheService.IsArtistFollowed(_newReleaseItem.Artist))
            {
                SpotifyCacheService.FollowArtist(_newReleaseItem.Artist);
            }
        }
Example #2
0
        public override void FollowArtist()
        {
            IsHighlighted = true;

            if (!SpotifyCacheService.IsArtistFollowed(ArtistViewModel.Artist))
            {
                SpotifyCacheService.FollowArtist(ArtistViewModel.Artist);
            }
        }