コード例 #1
0
ファイル: Reference.cs プロジェクト: ah16269/rest-web-api-wcf
 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);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: ah16269/rest-web-api-wcf
 public UpdateProductResponse(bool UpdateProductResult, LINQNorthwindClient.ProductServiceRef.Product product, string message)
 {
     this.UpdateProductResult = UpdateProductResult;
     this.product             = product;
     this.message             = message;
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: ah16269/rest-web-api-wcf
 public UpdateProductRequest(LINQNorthwindClient.ProductServiceRef.Product product, string message)
 {
     this.product = product;
     this.message = message;
 }