public IQueryable <T> ApplyFilter(string where, IQueryable <T> queryResult) { if (_paginationService != null) { queryResult = _paginationService.Filter(queryResult, where); } return(queryResult); }