public bool UpdateProduct(ref LINQNorthwindClient.ProductServiceRef.Product product, ref string message)
 {
     LINQNorthwindClient.ProductServiceRef.UpdateProductRequest inValue = new LINQNorthwindClient.ProductServiceRef.UpdateProductRequest();
     inValue.product = product;
     inValue.message = message;
     LINQNorthwindClient.ProductServiceRef.UpdateProductResponse retVal = ((LINQNorthwindClient.ProductServiceRef.IProductService)(this)).UpdateProduct(inValue);
     product = retVal.product;
     message = retVal.message;
     return(retVal.UpdateProductResult);
 }
 public UpdateProductResponse(bool UpdateProductResult, LINQNorthwindClient.ProductServiceRef.Product product, string message)
 {
     this.UpdateProductResult = UpdateProductResult;
     this.product             = product;
     this.message             = message;
 }
 public UpdateProductRequest(LINQNorthwindClient.ProductServiceRef.Product product, string message)
 {
     this.product = product;
     this.message = message;
 }