Example #1
0
 public async Task <ActionResult <List <Produto> > > BuscaPorMemoria(int memoria)
 {
     try
     {
         return(await repositorio.BuscaPorMemoria(memoria));
     }
     catch (Exception)
     {
         throw;
     }
 }