Exemplo n.º 1
0
 public async Task UpdateOrderAsync(
     VirtoCommerce.ApiClient.DataContracts.Orders.CustomerOrder order)
 {
     await _orderClient.UpdateOrderAsync(order);
 }
Exemplo n.º 2
0
 public Task UpdateOrderAsync(CustomerOrder order)
 {
     return SendAsync<CustomerOrder>(
         CreateRequestUri(RelativePaths.UpdateOrder), HttpMethod.Put, order);
 }