예제 #1
0
 public List <T> PageList <T>(int pageIndex, int pageSize, string sqlWhere, out int total, params object[] args) where T : class
 {
     return(DbProvider.PageList <T>(pageIndex, pageSize, sqlWhere, out total, args));
 }
예제 #2
0
 public List <T> PageList <T>(int pageIndex, int pageSize, out int total) where T : class
 {
     return(DbProvider.PageList <T>(pageIndex, pageSize, "", out total));
 }