Exemplo n.º 1
0
 public System.Threading.Tasks.Task <StoreClient.StoreService.InventoryDTO[]> GetInventoryAsync(StoreClient.StoreService.UserDTO currentUser)
 {
     return(base.Channel.GetInventoryAsync(currentUser));
 }
Exemplo n.º 2
0
 public System.Threading.Tasks.Task <bool> BuyProductAsync(StoreClient.StoreService.UserDTO user, int productId, int amount)
 {
     return(base.Channel.BuyProductAsync(user, productId, amount));
 }
Exemplo n.º 3
0
 public StoreClient.StoreService.InventoryDTO[] GetInventory(StoreClient.StoreService.UserDTO currentUser)
 {
     return(base.Channel.GetInventory(currentUser));
 }
Exemplo n.º 4
0
 public bool BuyProduct(StoreClient.StoreService.UserDTO user, int productId, int amount)
 {
     return(base.Channel.BuyProduct(user, productId, amount));
 }