Beispiel #1
0
 public void Put(int id, [FromBody] PizzaBox.Domain.Models.Customer customer)
 {
     customer.ID = id;
     repo.Update(customer);
 }
Beispiel #2
0
 public void Post([FromBody] PizzaBox.Domain.Models.Customer customer)
 {
     repo.Add(customer);
 }