コード例 #1
0
ファイル: CompanyService.php プロジェクト: rabbitdigital/HRM
 /**
  * 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());
     }
 }