public LoginAuthenticationViewModel LoginAuthentication(loginRequest loginRequest)
 {
     object[] results = this.Invoke("LoginAuthentication", new object[] {
         loginRequest
     });
     return((LoginAuthenticationViewModel)(results[0]));
 }
 /// <remarks/>
 public void LoginAuthenticationAsync(loginRequest loginRequest, object userState)
 {
     if ((this.LoginAuthenticationOperationCompleted == null))
     {
         this.LoginAuthenticationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnLoginAuthenticationOperationCompleted);
     }
     this.InvokeAsync("LoginAuthentication", new object[] {
         loginRequest
     }, this.LoginAuthenticationOperationCompleted, userState);
 }
 /// <remarks/>
 public void LoginAuthenticationAsync(loginRequest loginRequest)
 {
     this.LoginAuthenticationAsync(loginRequest, null);
 }