Exemplo n.º 1
0
 public async Task <string> UpdateProductAttribute(int attributeid, ProductAttribute pa, Dictionary <string, string> parms = null)
 {
     return(await API.SendHttpClientRequest("products/attributes/" + attributeid.ToString(), RequestMethod.PUT, pa, parms));
 }
Exemplo n.º 2
0
 public async Task <string> PostProductAttribute(ProductAttribute pa, Dictionary <string, string> parms = null)
 {
     return(await API.SendHttpClientRequest("products/attributes", RequestMethod.POST, pa, parms));
 }