示例#1
0
 public void AddProduct(TheShop.Model.Product product)
 {
     base.Channel.AddProduct(product);
 }
示例#2
0
 public System.Threading.Tasks.Task AddProductAsync(TheShop.Model.Product product)
 {
     return(base.Channel.AddProductAsync(product));
 }
示例#3
0
 public void UpdateProduct(TheShop.Model.Product product)
 {
     base.Channel.UpdateProduct(product);
 }