示例#1
0
 public string CreateCategory(ref USClothesWebSite.DTO.Category category)
 {
     USClothesWebSite.Win.Logic.DictionaryAPI.CreateCategoryRequest inValue = new USClothesWebSite.Win.Logic.DictionaryAPI.CreateCategoryRequest();
     inValue.category = category;
     USClothesWebSite.Win.Logic.DictionaryAPI.CreateCategoryResponse retVal = ((USClothesWebSite.Win.Logic.DictionaryAPI.IDictionaryAPI)(this)).CreateCategory(inValue);
     category = retVal.category;
     return(retVal.CreateCategoryResult);
 }
示例#2
0
 public System.Threading.Tasks.Task <USClothesWebSite.Win.Logic.DictionaryAPI.CreateCategoryResponse> CreateCategoryAsync(USClothesWebSite.Win.Logic.DictionaryAPI.CreateCategoryRequest request)
 {
     return(base.Channel.CreateCategoryAsync(request));
 }
示例#3
0
 USClothesWebSite.Win.Logic.DictionaryAPI.CreateCategoryResponse USClothesWebSite.Win.Logic.DictionaryAPI.IDictionaryAPI.CreateCategory(USClothesWebSite.Win.Logic.DictionaryAPI.CreateCategoryRequest request)
 {
     return(base.Channel.CreateCategory(request));
 }