public ServiceResult EmployeeLogin(LoginInfo loginInfo)
 {
     object[] results = this.Invoke("EmployeeLogin", new object[] {
             loginInfo});
     return ((ServiceResult)(results[0]));
 }
 /// <remarks/>
 public System.IAsyncResult BeginEmployeeLogin(LoginInfo loginInfo, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("EmployeeLogin", new object[] {
             loginInfo}, callback, asyncState);
 }
 /// <remarks/>
 public void RetrievePriceListAsync(string accountNumber, LoginInfo loginInfo)
 {
     this.RetrievePriceListAsync(accountNumber, loginInfo, null);
 }
 /// <remarks/>
 public void RetrievePriceListAsync(string accountNumber, LoginInfo loginInfo, object userState)
 {
     if ((this.RetrievePriceListOperationCompleted == null))
     {
         this.RetrievePriceListOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRetrievePriceListOperationCompleted);
     }
     this.InvokeAsync("RetrievePriceList", new object[] {
             accountNumber,
             loginInfo}, this.RetrievePriceListOperationCompleted, userState);
 }
 public PrizeInfo[] RetrievePriceList(string accountNumber, LoginInfo loginInfo)
 {
     object[] results = this.Invoke("RetrievePriceList", new object[] {
             accountNumber,
             loginInfo});
     return ((PrizeInfo[])(results[0]));
 }
 /// <remarks/>
 public System.IAsyncResult BeginRetrievePriceList(string accountNumber, LoginInfo loginInfo, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("RetrievePriceList", new object[] {
             accountNumber,
             loginInfo}, callback, asyncState);
 }
 /// <remarks/>
 public void EmployeeLoginAsync(LoginInfo loginInfo, object userState)
 {
     if ((this.EmployeeLoginOperationCompleted == null))
     {
         this.EmployeeLoginOperationCompleted = new System.Threading.SendOrPostCallback(this.OnEmployeeLoginOperationCompleted);
     }
     this.InvokeAsync("EmployeeLogin", new object[] {
             loginInfo}, this.EmployeeLoginOperationCompleted, userState);
 }
 /// <remarks/>
 public void EmployeeLoginAsync(LoginInfo loginInfo)
 {
     this.EmployeeLoginAsync(loginInfo, null);
 }
Example #9
0
 /// <remarks/>
 public System.IAsyncResult BeginEmployeeLogin(LoginInfo loginInfo, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("EmployeeLogin", new object[] {
         loginInfo
     }, callback, asyncState));
 }
Example #10
0
 /// <remarks/>
 public void RetrievePriceListAsync(string accountNumber, LoginInfo loginInfo)
 {
     this.RetrievePriceListAsync(accountNumber, loginInfo, null);
 }
Example #11
0
 /// <remarks/>
 public void EmployeeLoginAsync(LoginInfo loginInfo)
 {
     this.EmployeeLoginAsync(loginInfo, null);
 }