Пример #1
0
 public string UpdateStockWith(string productName, int quantity, string description)
 {
     Vendor.CustomerService.UpdateStockWithRequest inValue = new Vendor.CustomerService.UpdateStockWithRequest();
     inValue.Body             = new Vendor.CustomerService.UpdateStockWithRequestBody();
     inValue.Body.productName = productName;
     inValue.Body.quantity    = quantity;
     inValue.Body.description = description;
     Vendor.CustomerService.UpdateStockWithResponse retVal = ((Vendor.CustomerService.Service1Soap)(this)).UpdateStockWith(inValue);
     return(retVal.Body.UpdateStockWithResult);
 }
Пример #2
0
 Vendor.CustomerService.UpdateStockWithResponse Vendor.CustomerService.Service1Soap.UpdateStockWith(Vendor.CustomerService.UpdateStockWithRequest request)
 {
     return(base.Channel.UpdateStockWith(request));
 }