Пример #1
0
        public GetAlbumTopTagsCommandTest()
        {
            _command = new GetAlbumTopTagsCommand(MAuth.Object)
            {
                AlbumName  = "Believe",
                ArtistName = "Cher"
            };

            _command.SetParameters();
        }
Пример #2
0
        public async Task <PageResponse <LastTag> > GetTopTagsForAlbumAsync(string artist, string album, bool autocorrect = false)
        {
            var command = new GetAlbumTopTagsCommand(Auth)
            {
                ArtistName = artist,
                AlbumName  = album
            };

            return(await command.ExecuteAsync());
        }