Beispiel #1
0
 public async Task <ActionResult <IEnumerable <Product> > > Page(long _PageNumber, string _Orderby, bool _IsDesc)
 {
     return(Ok(await _productService.Page(new DefaultFilter {
         PageNumber = _PageNumber, Orderby = _Orderby, IsDesc = _IsDesc
     })));
 }