/// <remarks/> public void RetrievePriceListAsync(string accountNumber, LoginInfo loginInfo) { this.RetrievePriceListAsync(accountNumber, loginInfo, null); }
/// <remarks/> public System.IAsyncResult BeginEmployeeLogin(LoginInfo loginInfo, System.AsyncCallback callback, object asyncState) { return(this.BeginInvoke("EmployeeLogin", new object[] { loginInfo }, callback, asyncState)); }
/// <remarks/> public System.IAsyncResult BeginEmployeeLogin(LoginInfo loginInfo, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("EmployeeLogin", new object[] { loginInfo}, callback, asyncState); }
/// <remarks/> public void EmployeeLoginAsync(LoginInfo loginInfo) { this.EmployeeLoginAsync(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 ServiceResult EmployeeLogin(LoginInfo loginInfo) { object[] results = this.Invoke("EmployeeLogin", new object[] { loginInfo}); return ((ServiceResult)(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); }
public PrizeInfo[] RetrievePriceList(string accountNumber, LoginInfo loginInfo) { object[] results = this.Invoke("RetrievePriceList", new object[] { accountNumber, loginInfo}); return ((PrizeInfo[])(results[0])); }
/// <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); }