AccountProfile.Controllers.ProfileController.Edit C# (CSharp) Method

Edit() public method

public Edit ( string username ) : System.Web.Mvc.ViewResult
username string
return System.Web.Mvc.ViewResult
        public ViewResult Edit(string username)
        {
            var profile = _profileRepository.Find(username);
            return View(new ProfileEditModel(profile));
        }