BgEngine.Controllers.ImageController.Edit C# (CSharp) Method

Edit() private method

private Edit ( Image image ) : System.Web.Mvc.ActionResult
image Image
return System.Web.Mvc.ActionResult
        public ActionResult Edit(Image image)
        {
            if (ModelState.IsValid)
            {
                ImageServices.SaveEntity(image);
                return RedirectToAction("Index", new { id = image.AlbumId });
            }
            return View(image);
        }

Same methods

ImageController::Edit ( int id ) : System.Web.Mvc.ActionResult