Ejemplo n.º 1
0
        public virtual List <TEntity> GetByPage(QueryInfo queryInfo, out int totalRowCount, Expression <Func <TEntity, bool> > filter = null, Expression <Func <TEntity, object> > orderBy = null)
        {
            var result = QueryableRepository.GetByPage(queryInfo, out totalRowCount, filter, orderBy);

            return(result);
        }