Beispiel #1
0
 public static DataTable SelectPage(
     int siteId,
     int moduleDefId,
     string title,
     int pageNumber,
     int pageSize,
     bool sortByModuleType,
     bool sortByAuthor,
     out int totalPages)
 {
     return(DBModule.SelectPage(
                siteId,
                moduleDefId,
                title,
                pageNumber,
                pageSize,
                sortByModuleType,
                sortByAuthor,
                out totalPages));
 }