Esempio n. 1
0
 public System.IAsyncResult BeginCheckInventory(string partNumber, System.AsyncCallback callback, object asyncState)
 {
     VendorWebClient.BusinessEntity.CheckInventoryRequest inValue = new VendorWebClient.BusinessEntity.CheckInventoryRequest();
     inValue.Body            = new VendorWebClient.BusinessEntity.CheckInventoryRequestBody();
     inValue.Body.partNumber = partNumber;
     return(((VendorWebClient.BusinessEntity.InventoryServiceSoap)(this)).BeginCheckInventory(inValue, callback, asyncState));
 }
Esempio n. 2
0
 public VendorWebClient.BusinessEntity.InventoryLevel CheckInventory(string partNumber)
 {
     VendorWebClient.BusinessEntity.CheckInventoryRequest inValue = new VendorWebClient.BusinessEntity.CheckInventoryRequest();
     inValue.Body            = new VendorWebClient.BusinessEntity.CheckInventoryRequestBody();
     inValue.Body.partNumber = partNumber;
     VendorWebClient.BusinessEntity.CheckInventoryResponse retVal = ((VendorWebClient.BusinessEntity.InventoryServiceSoap)(this)).CheckInventory(inValue);
     return(retVal.Body.CheckInventoryResult);
 }
Esempio n. 3
0
 System.IAsyncResult VendorWebClient.BusinessEntity.InventoryServiceSoap.BeginCheckInventory(VendorWebClient.BusinessEntity.CheckInventoryRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginCheckInventory(request, callback, asyncState));
 }
Esempio n. 4
0
 VendorWebClient.BusinessEntity.CheckInventoryResponse VendorWebClient.BusinessEntity.InventoryServiceSoap.CheckInventory(VendorWebClient.BusinessEntity.CheckInventoryRequest request)
 {
     return(base.Channel.CheckInventory(request));
 }