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)); }
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); }
System.IAsyncResult VendorWebClient.BusinessEntity.InventoryServiceSoap.BeginCheckInventory(VendorWebClient.BusinessEntity.CheckInventoryRequest request, System.AsyncCallback callback, object asyncState) { return(base.Channel.BeginCheckInventory(request, callback, asyncState)); }
VendorWebClient.BusinessEntity.CheckInventoryResponse VendorWebClient.BusinessEntity.InventoryServiceSoap.CheckInventory(VendorWebClient.BusinessEntity.CheckInventoryRequest request) { return(base.Channel.CheckInventory(request)); }