コード例 #1
0
ファイル: Reference.cs プロジェクト: chyuck/us-clothes
 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
ファイル: Reference.cs プロジェクト: chyuck/us-clothes
 public System.Threading.Tasks.Task <string> UpdateCategoryAsync(USClothesWebSite.DTO.Category category)
 {
     return(base.Channel.UpdateCategoryAsync(category));
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: chyuck/us-clothes
 public string UpdateCategory(USClothesWebSite.DTO.Category category)
 {
     return(base.Channel.UpdateCategory(category));
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: chyuck/us-clothes
 public System.Threading.Tasks.Task <USClothesWebSite.DTO.SubCategory[]> GetSubCategoriesByCategoryAsync(USClothesWebSite.DTO.Category category, string filter)
 {
     return(base.Channel.GetSubCategoriesByCategoryAsync(category, filter));
 }
コード例 #5
0
ファイル: Reference.cs プロジェクト: chyuck/us-clothes
 public USClothesWebSite.DTO.SubCategory[] GetSubCategoriesByCategory(USClothesWebSite.DTO.Category category, string filter)
 {
     return(base.Channel.GetSubCategoriesByCategory(category, filter));
 }
コード例 #6
0
ファイル: Reference.cs プロジェクト: chyuck/us-clothes
 public CreateCategoryResponse(string CreateCategoryResult, USClothesWebSite.DTO.Category category)
 {
     this.CreateCategoryResult = CreateCategoryResult;
     this.category             = category;
 }
コード例 #7
0
ファイル: Reference.cs プロジェクト: chyuck/us-clothes
 public CreateCategoryRequest(USClothesWebSite.DTO.Category category)
 {
     this.category = category;
 }