Exemplo n.º 1
0
        public IHttpActionResult GetAllBookshelvesByOwner()
        {
            BookshelfService        service     = CreateBookshelfService();
            List <BookshelfDisplay> bookshelves = service.GetAllBookShelvesByOwner();

            return(Ok(bookshelves));
        }