Ejemplo n.º 1
0
        public async Task <IActionResult> OnPostDataAsync(int page, int rows, AdvertisementSearch where)
        {
            var data = await _service.GetListAsync(page, rows, where, null);

            return(PagerData(data.items, page, rows, data.count));
        }