public List <EmployeeDetail> GetAll()
        {
            List <Role> roles = _roleService.GetAll();

            List <Employee> employees = _employeeService.GetAll();

            return(GetEmployeeDetails(employees, roles));
        }
示例#2
0
 public List <Role> GetAll()
 {
     return(_roleService.GetAll());
 }