BookManagement.Controllers.AdminController.InsertBook C# (CSharp) Method

InsertBook() public method

public InsertBook ( ) : System.Web.Mvc.ActionResult
return 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