示例#1
0
 public string CreateSubCategory(ref USClothesWebSite.DTO.SubCategory subCategory)
 {
     USClothesWebSite.Win.Logic.DictionaryAPI.CreateSubCategoryRequest inValue = new USClothesWebSite.Win.Logic.DictionaryAPI.CreateSubCategoryRequest();
     inValue.subCategory = subCategory;
     USClothesWebSite.Win.Logic.DictionaryAPI.CreateSubCategoryResponse retVal = ((USClothesWebSite.Win.Logic.DictionaryAPI.IDictionaryAPI)(this)).CreateSubCategory(inValue);
     subCategory = retVal.subCategory;
     return(retVal.CreateSubCategoryResult);
 }
示例#2
0
 public System.Threading.Tasks.Task <USClothesWebSite.DTO.Size[]> GetSizesBySubCategoryAndBrandAsync(USClothesWebSite.DTO.SubCategory subCategory, USClothesWebSite.DTO.Brand brand, string filter)
 {
     return(base.Channel.GetSizesBySubCategoryAndBrandAsync(subCategory, brand, filter));
 }
示例#3
0
 public USClothesWebSite.DTO.Size[] GetSizesBySubCategoryAndBrand(USClothesWebSite.DTO.SubCategory subCategory, USClothesWebSite.DTO.Brand brand, string filter)
 {
     return(base.Channel.GetSizesBySubCategoryAndBrand(subCategory, brand, filter));
 }
示例#4
0
 public System.Threading.Tasks.Task <string> UpdateSubCategoryAsync(USClothesWebSite.DTO.SubCategory subCategory)
 {
     return(base.Channel.UpdateSubCategoryAsync(subCategory));
 }
示例#5
0
 public string UpdateSubCategory(USClothesWebSite.DTO.SubCategory subCategory)
 {
     return(base.Channel.UpdateSubCategory(subCategory));
 }
示例#6
0
 public CreateSubCategoryResponse(string CreateSubCategoryResult, USClothesWebSite.DTO.SubCategory subCategory)
 {
     this.CreateSubCategoryResult = CreateSubCategoryResult;
     this.subCategory             = subCategory;
 }
示例#7
0
 public CreateSubCategoryRequest(USClothesWebSite.DTO.SubCategory subCategory)
 {
     this.subCategory = subCategory;
 }