コード例 #1
0
 public IActionResult deleteById(int id)
 {
     try
     {
         return(Ok(_movimentoRepository.deleteById(id)));
     }
     catch (Exception error)
     {
         return(BadRequest("Error: " + error));
     }
 }