Esempio n. 1
0
 public async Task <ActionResult <Contato> > Obter(int idContato)
 {
     try
     {
         return(Ok(await _service.Obter(idContato)));
     }
     catch (Exception e)
     {
         throw e;
     }
 }