public async Task <bool> AddPasswordResetTokenAsync(PasswordResetToken token) { try { await repository.AddAsync(token); } catch { return(false); } return(true); }