예제 #1
0
 public List <E> GetEntitysPage <E>(string sql, string fileds, string SortName, Comm.ESortType SortType, int iPageIndex, int iPageSize, ref int iPageCount, ref int iRecordCount)
 {
     return(this.GetEntitysPage <E>(sql, "Id", SortName, SortType, iPageIndex, iPageSize, ref iPageCount, ref iRecordCount));
 }
예제 #2
0
 public List <T> GetEntitysPage(string sql, string key, string fileds, string SortName, Comm.ESortType SortType, int iPageIndex, int iPageSize, ref int iPageCount, ref int iRecordCount)
 {
     return(this.mRepo.GetEntitysPage(sql, key, fileds, SortName, SortType, iPageIndex, iPageSize, ref iPageCount, ref iRecordCount));
 }