Exemple #1
0
 public string CreateProduct(ref USClothesWebSite.DTO.Product product)
 {
     USClothesWebSite.Win.Logic.ProductAPI.CreateProductRequest inValue = new USClothesWebSite.Win.Logic.ProductAPI.CreateProductRequest();
     inValue.product = product;
     USClothesWebSite.Win.Logic.ProductAPI.CreateProductResponse retVal = ((USClothesWebSite.Win.Logic.ProductAPI.IProductAPI)(this)).CreateProduct(inValue);
     product = retVal.product;
     return(retVal.CreateProductResult);
 }
Exemple #2
0
 public System.Threading.Tasks.Task <USClothesWebSite.Win.Logic.ProductAPI.CreateProductResponse> CreateProductAsync(USClothesWebSite.Win.Logic.ProductAPI.CreateProductRequest request)
 {
     return(base.Channel.CreateProductAsync(request));
 }
Exemple #3
0
 USClothesWebSite.Win.Logic.ProductAPI.CreateProductResponse USClothesWebSite.Win.Logic.ProductAPI.IProductAPI.CreateProduct(USClothesWebSite.Win.Logic.ProductAPI.CreateProductRequest request)
 {
     return(base.Channel.CreateProduct(request));
 }