Esempio n. 1
0
 public System.Threading.Tasks.Task <bool> CreateAsync(ShopService.Transporter.TProduct product)
 {
     return(base.Channel.CreateAsync(product));
 }
Esempio n. 2
0
 public System.Threading.Tasks.Task <bool> RestockAsync(ShopService.Transporter.TProduct product, int quantity)
 {
     return(base.Channel.RestockAsync(product, quantity));
 }
Esempio n. 3
0
 public bool Create(ShopService.Transporter.TProduct product)
 {
     return(base.Channel.Create(product));
 }
Esempio n. 4
0
 public bool Restock(ShopService.Transporter.TProduct product, int quantity)
 {
     return(base.Channel.Restock(product, quantity));
 }