Raisins.Client.Web.Models.Account.IsValidAccount C# (CSharp) Method

IsValidAccount() public method

public IsValidAccount ( string password ) : bool
password string
return bool
        public bool IsValidAccount(string password)
        {
            return Password == GetHash(password, Salt);
        }