Exemplo n.º 1
0
        //public Task<PageResponse<BuyLink>> GetBuyLinksForAlbumAsync(string artist, string album, CountryCode country, bool autocorrect = false)
        //{
        //    throw new NotImplementedException();
        //}

        public Task <PageResponse <LastTag> > GetTagsByUserAsync(string artist, string album, string username, bool autocorrect = false)
        {
            var command = new AlbumGetTagsByUserCommand(Auth, artist, album, username)
            {
                Autocorrect = autocorrect
            };

            return(command.ExecuteAsync());
        }
 public void Initialise()
 {
     _command = new AlbumGetTagsByUserCommand(MAuth.Object, "", "", "");
 }