Exemplo n.º 1
0
        public IActionResult Update(string id, BookShelfm bshelfIn)
        {
            var bshelf = _bshelf.Get(id);

            if (bshelf == null)
            {
                return(NotFound());
            }

            _bshelf.Update(id, bshelfIn);

            return(NoContent());
        }