Ejemplo n.º 1
0
 public async Task <ActionResult <IEnumerable <Product> > > Search(string _Filter, string _Orderby, bool _IsDesc)
 {
     return(Ok(await _productService.Search(new DefaultFilter {
         Filter = _Filter, Orderby = _Orderby, IsDesc = _IsDesc
     })));
 }