Ejemplo n.º 1
0
 public System.Threading.Tasks.Task <bool> createProductAsync(string email, string password, vscommerce.Product.Product productToCreate)
 {
     return(base.Channel.createProductAsync(email, password, productToCreate));
 }
Ejemplo n.º 2
0
 public System.Threading.Tasks.Task <bool> updateProductAsync(string email, string password, vscommerce.Product.Product updatedProduct)
 {
     return(base.Channel.updateProductAsync(email, password, updatedProduct));
 }
Ejemplo n.º 3
0
 public bool createProduct(string email, string password, vscommerce.Product.Product productToCreate)
 {
     return(base.Channel.createProduct(email, password, productToCreate));
 }
Ejemplo n.º 4
0
 public bool updateProduct(string email, string password, vscommerce.Product.Product updatedProduct)
 {
     return(base.Channel.updateProduct(email, password, updatedProduct));
 }