Exemplo n.º 1
0
 public bool UpdateProduct(RealNorthwindClientTcp.ProductServiceRef.Product product, ref string message)
 {
     RealNorthwindClientTcp.ProductServiceRef.UpdateProductRequest inValue = new RealNorthwindClientTcp.ProductServiceRef.UpdateProductRequest();
     inValue.product = product;
     inValue.message = message;
     RealNorthwindClientTcp.ProductServiceRef.UpdateProductResponse retVal = ((RealNorthwindClientTcp.ProductServiceRef.IProductService)(this)).UpdateProduct(inValue);
     message = retVal.message;
     return(retVal.UpdateProductResult);
 }
Exemplo n.º 2
0
 public UpdateProductRequest(RealNorthwindClientTcp.ProductServiceRef.Product product, string message)
 {
     this.product = product;
     this.message = message;
 }