Exemplo n.º 1
0
 /// <summary>
 /// 获取相关员工列表数据
 /// </summary>
 /// <param name="jobStatus">任职情况(在职,离职)</param>
 /// <param name="position">职位</param>
 /// <param name="employeeName">员工名</param>
 /// <returns></returns>
 public List <Employee> GetAllEmployees(string jobStatus, string position, string employeeName)
 {
     return(repositoryService.GetAllEmployees(jobStatus, position, employeeName));
 }