123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Web;
- using System.Reflection;
- using System.Linq.Expressions;
- namespace Bowin.Common.Linq.Entity
- {
- [Serializable]
- public class GridResultSet<TEntity> : IGridResultSet<TEntity>
- {
- private List<TEntity> _rows;
- public List<TEntity> rows {
- get
- {
- return _rows;
- }
- set
- {
- _rows = value;
- }
- }
- public int total { get; set; }
- }
- }
|