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

            if (!service.DeleteBookshelf(id))
            {
                return(InternalServerError());
            }
            return(Ok());
        }