Exemplo n.º 1
0
 public async Task AddCustomer(CustomerProxy customer)
 {
     await Post(customer, "POST");
 }
Exemplo n.º 2
0
 public async Task UpdateCustomer(CustomerProxy customer)
 {
     await Post(customer, "PUT");
 }
Exemplo n.º 3
0
 public async Task DeleteCustomer(CustomerProxy customer)
 {
     await Post(customer, "DELETE");
 }