public string ProcessLogonNameAuthenticity() { svcAuthenticateUser = new SVC_AuthenticateUser(); foundLogon = svcAuthenticateUser.AuthenticateLogon(logon); if (foundLogon) { return(logon); } else { return("Valid Username Entered."); } }
public string ProcessLogonNameAuthenticity() { svcAuthenticateUser = new SVC_AuthenticateUser(); foundLogon = svcAuthenticateUser.AuthenticateLogon(logon); if (foundLogon) { return logon; } else { return "Valid Username Entered."; } }
public string ProcessAuthenticationRequest() { svcAuthenticateUser = new SVC_AuthenticateUser(); foundLogon = svcAuthenticateUser.AuthenticateLogon(logon); foundPassword = svcAuthenticateUser.AuthenticatePassword(password); if (foundLogon && foundPassword) { return(logon); } else { return("Invalid Password Entered"); } }
public string ProcessAuthenticationRequest() { svcAuthenticateUser = new SVC_AuthenticateUser(); foundLogon = svcAuthenticateUser.AuthenticateLogon(logon); foundPassword = svcAuthenticateUser.AuthenticatePassword(password); if (foundLogon && foundPassword) { return logon; } else { return "Invalid Password Entered"; } }