Exemplo n.º 1
0
 public System.Threading.Tasks.Task RemoveLineAsync(KaspiShop.ShopCartItemService.ProductDTO product)
 {
     return(base.Channel.RemoveLineAsync(product));
 }
Exemplo n.º 2
0
 public System.Threading.Tasks.Task AddItemAsync(KaspiShop.ShopCartItemService.ProductDTO product, int quantity)
 {
     return(base.Channel.AddItemAsync(product, quantity));
 }
Exemplo n.º 3
0
 public void RemoveLine(KaspiShop.ShopCartItemService.ProductDTO product)
 {
     base.Channel.RemoveLine(product);
 }
Exemplo n.º 4
0
 public void AddItem(KaspiShop.ShopCartItemService.ProductDTO product, int quantity)
 {
     base.Channel.AddItem(product, quantity);
 }