Exemplo n.º 1
0
        public IHttpActionResult GetBookshelfById(int id)
        {
            BookshelfService service = CreateBookshelfService();
            BookshelfDisplay shelf   = service.GetBookshelfById(id);

            return(Ok(shelf));
        }