Ejemplo n.º 1
0
 public void SubstractQtyItem(OnlineStore.Infrastructure.Business.DTO.ProductDTO productDto, int quantity)
 {
     base.Channel.SubstractQtyItem(productDto, quantity);
 }
Ejemplo n.º 2
0
 public System.Threading.Tasks.Task RemoveLineAsync(OnlineStore.Infrastructure.Business.DTO.ProductDTO productDto)
 {
     return(base.Channel.RemoveLineAsync(productDto));
 }
Ejemplo n.º 3
0
 public System.Threading.Tasks.Task AddItemAsync(OnlineStore.Infrastructure.Business.DTO.ProductDTO productDto, int quantity)
 {
     return(base.Channel.AddItemAsync(productDto, quantity));
 }
Ejemplo n.º 4
0
 public void RemoveLine(OnlineStore.Infrastructure.Business.DTO.ProductDTO productDto)
 {
     base.Channel.RemoveLine(productDto);
 }