コード例 #1
0
ファイル: PersonnelService.cs プロジェクト: JuRogn/OA
 public List<string> GetEmployeeIDsByParas(IList<string> companyIDs, IList<string> departmentIDs, IList<string> postIDs)
 {
     using (EmployeeBLL bll = new EmployeeBLL())
     {
         List<string> q = bll.GetEmployeeIDsByParas(companyIDs, departmentIDs, postIDs);
         return q;
     }
 }