Beispiel #1
0
 public void DeleteCoffeeOrder(DeleteCoffeeOrderInput input)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
 public IHttpActionResult DeleteCoffeeOrder(DeleteCoffeeOrderInput input)
 {
     _coffeeService.DeleteCoffeeOrder(input);
     return(Ok());
 }