Ejemplo n.º 1
0
 public async Task <ActionResult <IList <Categoria> > > Lista(FiltroSpec filtro)
 {
     try
     {
         return(Ok(await _service.Lista(filtro)));
     }
     catch (Exception e)
     {
         throw e;
     }
 }