public bool Create_Product(InboundClient.ProductServiceInbound.Product product, ref string message)
 {
     InboundClient.ProductServiceInbound.Create_ProductRequest inValue = new InboundClient.ProductServiceInbound.Create_ProductRequest();
     inValue.product = product;
     inValue.message = message;
     InboundClient.ProductServiceInbound.Create_ProductResponse retVal = ((InboundClient.ProductServiceInbound.IProduct)(this)).Create_Product(inValue);
     message = retVal.message;
     return(retVal.Create_ProductResult);
 }
 public bool UpdateProductByID(InboundClient.ProductServiceInbound.Product product)
 {
     return(base.Channel.UpdateProductByID(product));
 }
 public System.Threading.Tasks.Task <bool> UpdateProductByIDAsync(InboundClient.ProductServiceInbound.Product product)
 {
     return(base.Channel.UpdateProductByIDAsync(product));
 }
 public Create_ProductRequest(InboundClient.ProductServiceInbound.Product product, string message)
 {
     this.product = product;
     this.message = message;
 }