Exemplo n.º 1
0
 public ActionResult <List <Amigo> > Listar()
 {
     try
     {
         return(_amigoService.Listar());
     }
     catch (Exception ex)
     {
         return(BadRequest(ex.Message));
     }
 }