Esempio n. 1
0
 public IActionResult Delete(int id)
 {
     try
     {
         _repo.Excluir(id);
         return(Ok(_repo.SelecionarTudo()));
     }
     catch (System.Exception)
     {
         return(StatusCode(500));
     }
 }