Esempio n. 1
0
 /**
  * Get Supervisor Employee List
  * This function should be available in EmployeeService, not here
  * Due to backward compatibility temporarily its made available. referencing places need to be pointed to employee service
  * and this should be removed
  */
 public function getSupervisorEmployeeList($supervisorId)
 {
     try {
         $employeeService = new EmployeeService();
         return $employeeService->getSupervisorEmployeeList($supervisorId);
     } catch (Exception $e) {
         throw new AdminServiceException($e->getMessage());
     }
 }