CapRaffle.Controllers.AccountController.ChangePasswordPartial C# (CSharp) Method

ChangePasswordPartial() private method

private ChangePasswordPartial ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult ChangePasswordPartial()
        {
            ChangePasswordViewModel user = new ChangePasswordViewModel
            {
                Email = HttpContext.User.Identity.Name
            };
            return PartialView("_ChangePassword", user);
        }