AIMS_BD_IATI.WebAPI.Models.Authentication.AccountMembershipService.ResetPassword C# (CSharp) Method

ResetPassword() public method

public ResetPassword ( string userId, string newPassword ) : string
userId string
newPassword string
return string
        public string ResetPassword(string userId, string newPassword)
        {
            return new CustomMembershipProvider().ResetPassword(userId, newPassword);
        }