public List <EmployeeDetail> GetAll() { List <Role> roles = _roleService.GetAll(); List <Employee> employees = _employeeService.GetAll(); return(GetEmployeeDetails(employees, roles)); }
public List <Role> GetAll() { return(_roleService.GetAll()); }