Exemplo n.º 1
0
        protected async override Task AddItems()
        {
            IEnumerable <Book> booksCollection = null;

            booksCollection = await BooksManager.GetBooksManager().GetBooks(this.CurrentPosition, this.PageSize, this.category);

            foreach (Book book in booksCollection)
            {
                this.MyItems.Add(book);
            }
        }