Exemplo n.º 1
0
 public IActionResult Delete(int id)
 {
     try
     {
         return(Ok(mgr.DeleteById(id)));
     }
     catch (KeyNotFoundException knfe)
     {
         return(NotFound(knfe.Message));
     }
 }