BookManagement.Controllers.AdminController.InsertBook C# (CSharp) Метод

InsertBook() публичный Метод

public InsertBook ( ) : System.Web.Mvc.ActionResult
Результат System.Web.Mvc.ActionResult
        public ActionResult InsertBook()
        {
            var allCategories = from c in db.Categorys select c;
            ViewBag.cate = allCategories;
            return View();
        }

Same methods

AdminController::InsertBook ( Book book, System.Web.HttpPostedFileBase PhotoPath ) : System.Web.Mvc.ActionResult