Example #1
0
 public IActionResult Get(int id)
 {
     try
     {
         return(Ok(_trocoRepository.ObterPorId(id)));
     }
     catch (Exception ex)
     {
         return(BadRequest(ex.ToString()));
     }
 }