示例#1
0
        public ActionResult <BookShelfm> Create(BookShelfm bshelf)
        {
            _bshelf.Create(bshelf);

            return(CreatedAtRoute(nameof(GetBookShelf), new { ID = bshelf.ID.ToString() }, bshelf));
        }