コード例 #1
0
ファイル: PersonnelService.cs プロジェクト: JuRogn/OA
 public byte[] ExportEmployeeBasicInfosNoGetReports(List<V_EmployeeBasicInfo> ListInfos, DateTime Dt, List<string> companyids)
 {
     using (ReportsBLL bll = new ReportsBLL())
     {
         return bll.ExportGetEmployeeBasicInfosByCompany(ListInfos, Dt, companyids);
     }
 }
コード例 #2
0
ファイル: PersonnelService.cs プロジェクト: JuRogn/OA
 public byte[] ExportEmployeeBasicInfosByCompanyReports(List<string> companyids, string sort, string filterString, object[] paras, string userID, string IsType, DateTime start, DateTime end)
 {
     using (ReportsBLL bll = new ReportsBLL())
     {
         return bll.ExportGetEmployeeBasicInfosByCompany(companyids, sort, filterString, paras, userID, IsType, start, end);
     }
 }