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