Beispiel #1
0
    public bool RegisterUser(string username, string password, string name)
    {
        string passHash = GetHashString(password);

        return(_db.InsertUser(name, username, passHash));
    }