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); }
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)); }
public USClothesWebSite.DTO.Size[] GetSizesBySubCategoryAndBrand(USClothesWebSite.DTO.SubCategory subCategory, USClothesWebSite.DTO.Brand brand, string filter) { return(base.Channel.GetSizesBySubCategoryAndBrand(subCategory, brand, filter)); }
public System.Threading.Tasks.Task <string> UpdateBrandAsync(USClothesWebSite.DTO.Brand brand) { return(base.Channel.UpdateBrandAsync(brand)); }
public string UpdateBrand(USClothesWebSite.DTO.Brand brand) { return(base.Channel.UpdateBrand(brand)); }
public CreateBrandResponse(string CreateBrandResult, USClothesWebSite.DTO.Brand brand) { this.CreateBrandResult = CreateBrandResult; this.brand = brand; }
public CreateBrandRequest(USClothesWebSite.DTO.Brand brand) { this.brand = brand; }