Пример #1
0
 public ActionResult <Comanda> Delete(int id)
 {
     _ComandaService.Remove(id);
     return(CreatedAtAction(nameof(Get), new { id = id }));
 }