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