Beispiel #1
0
        public async Task <string> GetAuthorName()
        {
            var bookService = new BookStoreService();
            var author      = await bookService.GetAuthorAsync(AuthorId);

            return(author.Name);
        }