예제 #1
0
 public static IList <File> GetFilesBy(string ownerID, string keyword, string parentID, string startTime, string endTime, FileStates fileStates, FileTypes fileType, bool displayInNotificationsOnly, bool publicReviewOnly, bool publicDownloadOnly, bool previewAfterPermitOnly, bool downloadAfterPermitOnly, string orderBy, bool desc, int pageIndex, int pageSize, out int recordCount)
 {
     return(FileSystemService.ReadExtendPropertiesOfFiles(FileSystemService.fileGateway.GetFilesBy(ownerID, keyword, parentID, startTime, endTime, fileStates, fileType, displayInNotificationsOnly, publicReviewOnly, publicDownloadOnly, previewAfterPermitOnly, downloadAfterPermitOnly, orderBy, desc, pageIndex, pageSize, out recordCount)));
 }
예제 #2
0
 public static IList <File> GetHotFiles(int pageIndex, int pageSize, out int recordCount)
 {
     return(FileSystemService.ReadExtendPropertiesOfFiles(FileSystemService.fileGateway.GetHotFiles(pageIndex, pageSize, out recordCount)));
 }
예제 #3
0
 public static IList <File> GetFilesByCatIds(string ownerID, string keyword, string parentID, string startTime, string endTime, IList <string> catIds, FileStates fileState, FileTypes fileType, string orderBy, bool desc, int pageIndex, int pageSize, out int recordCount)
 {
     return(FileSystemService.ReadExtendPropertiesOfFiles(FileSystemService.fileGateway.GetFilesByCatIds(ownerID, keyword, parentID, startTime, endTime, catIds, fileState, fileType, orderBy, desc, pageIndex, pageSize, out recordCount)));
 }