CapRaffle.Controllers.AccountController.ChangePasswordPartial C# (CSharp) 메소드

ChangePasswordPartial() 개인적인 메소드

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