//根据条件查询档案信息 public List <T_OA_ARCHIVES> GetArchivesInfosListBySearch(string type, string title) { using (ArchivesManagementBll archivesBll = new ArchivesManagementBll()) { IQueryable <T_OA_ARCHIVES> ArchivesList = archivesBll.GetArchivesInfosListBySearch(type, title); return(ArchivesList == null ? null : ArchivesList.ToList()); } }
//根据条件查询档案信息 public List<T_OA_ARCHIVES> GetArchivesInfosListBySearch(string type, string title) { using (ArchivesManagementBll archivesBll = new ArchivesManagementBll()) { IQueryable<T_OA_ARCHIVES> ArchivesList = archivesBll.GetArchivesInfosListBySearch(type, title); return ArchivesList == null ? null : ArchivesList.ToList(); } }