public System.Threading.Tasks.Task <Assignment_2.ACLogin.AuthenticateUserResponse> AuthenticateUserAsync(string strUserName, string strPassword)
 {
     Assignment_2.ACLogin.AuthenticateUserRequest inValue = new Assignment_2.ACLogin.AuthenticateUserRequest();
     inValue.Body             = new Assignment_2.ACLogin.AuthenticateUserRequestBody();
     inValue.Body.strUserName = strUserName;
     inValue.Body.strPassword = strPassword;
     return(((Assignment_2.ACLogin.AuthenticateServiceSoap)(this)).AuthenticateUserAsync(inValue));
 }
 public Assignment_2.ACLogin.AlgonquinCollegeUser AuthenticateUser(string strUserName, string strPassword)
 {
     Assignment_2.ACLogin.AuthenticateUserRequest inValue = new Assignment_2.ACLogin.AuthenticateUserRequest();
     inValue.Body             = new Assignment_2.ACLogin.AuthenticateUserRequestBody();
     inValue.Body.strUserName = strUserName;
     inValue.Body.strPassword = strPassword;
     Assignment_2.ACLogin.AuthenticateUserResponse retVal = ((Assignment_2.ACLogin.AuthenticateServiceSoap)(this)).AuthenticateUser(inValue);
     return(retVal.Body.AuthenticateUserResult);
 }
 System.Threading.Tasks.Task <Assignment_2.ACLogin.AuthenticateUserResponse> Assignment_2.ACLogin.AuthenticateServiceSoap.AuthenticateUserAsync(Assignment_2.ACLogin.AuthenticateUserRequest request)
 {
     return(base.Channel.AuthenticateUserAsync(request));
 }
 Assignment_2.ACLogin.AuthenticateUserResponse Assignment_2.ACLogin.AuthenticateServiceSoap.AuthenticateUser(Assignment_2.ACLogin.AuthenticateUserRequest request)
 {
     return(base.Channel.AuthenticateUser(request));
 }