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