Пример #1
0
 public async Task <ActionResult> ListarProductos(string moneda, string filtro)
 {
     try
     {
         return(Ok(await iProductosService.ListarProductos(moneda, filtro)));
     }
     catch (Exception ex)
     {
         return(Ok(ex.ToString()));
     }
 }