BookMgnt.Controllers.AccountController.ChangePassword C# (CSharp) Method

ChangePassword() public method

public ChangePassword ( int id ) : System.Web.Mvc.ActionResult
id int
return System.Web.Mvc.ActionResult
        public ActionResult ChangePassword(int? id)
        {
            if (id == null)
            {
                return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
            }
            var user = Context.Users.Find(id);
            if (user == null)
            {
                return HttpNotFound();
            }
            return View();
        }

Same methods

AccountController::ChangePassword ( ManageUserViewModel model ) : System.Web.Mvc.ActionResult