Exemple #1
0
 public string CreateBrand(ref USClothesWebSite.DTO.Brand brand)
 {
     USClothesWebSite.Win.Logic.DictionaryAPI.CreateBrandRequest inValue = new USClothesWebSite.Win.Logic.DictionaryAPI.CreateBrandRequest();
     inValue.brand = brand;
     USClothesWebSite.Win.Logic.DictionaryAPI.CreateBrandResponse retVal = ((USClothesWebSite.Win.Logic.DictionaryAPI.IDictionaryAPI)(this)).CreateBrand(inValue);
     brand = retVal.brand;
     return(retVal.CreateBrandResult);
 }
Exemple #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));
 }
Exemple #3
0
 public USClothesWebSite.DTO.Size[] GetSizesBySubCategoryAndBrand(USClothesWebSite.DTO.SubCategory subCategory, USClothesWebSite.DTO.Brand brand, string filter)
 {
     return(base.Channel.GetSizesBySubCategoryAndBrand(subCategory, brand, filter));
 }
Exemple #4
0
 public System.Threading.Tasks.Task <string> UpdateBrandAsync(USClothesWebSite.DTO.Brand brand)
 {
     return(base.Channel.UpdateBrandAsync(brand));
 }
Exemple #5
0
 public string UpdateBrand(USClothesWebSite.DTO.Brand brand)
 {
     return(base.Channel.UpdateBrand(brand));
 }
Exemple #6
0
 public CreateBrandResponse(string CreateBrandResult, USClothesWebSite.DTO.Brand brand)
 {
     this.CreateBrandResult = CreateBrandResult;
     this.brand             = brand;
 }
Exemple #7
0
 public CreateBrandRequest(USClothesWebSite.DTO.Brand brand)
 {
     this.brand = brand;
 }