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