Exemplo n.º 1
0
 public async Task <Customer> UpsertAsync(Customer customer) =>
 await _http.PostAsync <Customer, Customer>("customer", customer);
Exemplo n.º 2
0
 public async Task <Order> UpsertAsync(Order order) =>
 await _http.PostAsync <Order, Order>("order", order);