BookManagement.Controllers.CommentController.Create C# (CSharp) Method

Create() private method

private Create ( int book ) : System.Web.Mvc.ActionResult
book int
return System.Web.Mvc.ActionResult
        public ActionResult Create(int book)
        {
            ViewBag.IdBook = book;
            return View();
        }

Same methods

CommentController::Create ( Comment comment ) : System.Web.Mvc.ActionResult
CommentController