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; } }