Epiworx.Business.UserPassword.Update C# (CSharp) Method

Update() protected method

protected Update ( UserPasswordData data ) : void
data UserPasswordData
return void
        protected void Update(UserPasswordData data)
        {
            data.UserId = this.UserId;
            data.Salt = PasswordHelper.GetSalt(Settings.SaltSize);
            data.Password = PasswordHelper.Salt(data.Salt, this.Password);
            data.ModifiedDate = this.ModifiedDate;
        }