Example #1
0
 public string CreateProductSize(ref USClothesWebSite.DTO.ProductSize productSize)
 {
     USClothesWebSite.Win.Logic.ProductAPI.CreateProductSizeRequest inValue = new USClothesWebSite.Win.Logic.ProductAPI.CreateProductSizeRequest();
     inValue.productSize = productSize;
     USClothesWebSite.Win.Logic.ProductAPI.CreateProductSizeResponse retVal = ((USClothesWebSite.Win.Logic.ProductAPI.IProductAPI)(this)).CreateProductSize(inValue);
     productSize = retVal.productSize;
     return(retVal.CreateProductSizeResult);
 }
Example #2
0
 public System.Threading.Tasks.Task <string> UpdateProductSizeAsync(USClothesWebSite.DTO.ProductSize productSize)
 {
     return(base.Channel.UpdateProductSizeAsync(productSize));
 }
Example #3
0
 public string UpdateProductSize(USClothesWebSite.DTO.ProductSize productSize)
 {
     return(base.Channel.UpdateProductSize(productSize));
 }
Example #4
0
 public CreateProductSizeResponse(string CreateProductSizeResult, USClothesWebSite.DTO.ProductSize productSize)
 {
     this.CreateProductSizeResult = CreateProductSizeResult;
     this.productSize             = productSize;
 }
Example #5
0
 public CreateProductSizeRequest(USClothesWebSite.DTO.ProductSize productSize)
 {
     this.productSize = productSize;
 }