/// <summary>
        /// Returns the albums from the given store.
        /// </summary>
        /// <returns>The task object representing the albums returned.</returns>
        public async Task <IEnumerable <AlbumDto> > GetAlbumsAsync()
        {
            string data = await httpUtility.FetchAddressAsync(albumsPath);

            return(JsonConvert.DeserializeObject <List <AlbumDto> >(data));
        }