예제 #1
0
 public IEnumerable <IArchive> SearchArchivesByCategory(
     string catPath,
     string keyword, int pageSize,
     int pageIndex, out int records,
     out int pages, string orderBy)
 {
     return(_archiveRep.SearchArchivesByCategory(
                SiteId, catPath, keyword, pageSize,
                pageIndex, out records, out pages, orderBy));
 }