Пример #1
0
 public async Task AddCustomer(CustomerProxy customer)
 {
     await Post(customer, "POST");
 }
Пример #2
0
 public async Task UpdateCustomer(CustomerProxy customer)
 {
     await Post(customer, "PUT");
 }
Пример #3
0
 public async Task DeleteCustomer(CustomerProxy customer)
 {
     await Post(customer, "DELETE");
 }