예제 #1
0
 public IEnumerable <T> GetEntitiesByPage <TS>(int pageIndex, int pageSize, out int totalCount, Func <T, bool> exp, Func <T, TS> order, bool descending)
 {
     return(dao.GetEntitiesByPage(pageIndex, pageSize, out totalCount, exp, order, descending));
 }