コード例 #1
0
ファイル: JobController.php プロジェクト: dobidobz/HRis
 /**
  * @param Sentinel $auth
  * @param Employee $employee
  * @param JobHistory $job_history
  * @param EmployeeWorkShift $employee_work_shift
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, Employee $employee, JobHistory $job_history, EmployeeWorkShift $employee_work_shift)
 {
     parent::__construct($auth);
     $this->employee = $employee;
     $this->job_history = $job_history;
     $this->employee_work_shift = $employee_work_shift;
 }
コード例 #2
0
 /**
  * @param Sentinel $auth
  * @param Employee $employee
  * @param EmployeeSalaryComponent $employee_salary_component
  * @param Salary $salary_services
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, Employee $employee, EmployeeSalaryComponent $employee_salary_component, Salary $salary_services)
 {
     parent::__construct($auth);
     $this->employee = $employee;
     $this->employee_salary_component = $employee_salary_component;
     $this->salary_services = $salary_services;
 }
コード例 #3
0
ファイル: SkillController.php プロジェクト: dobidobz/HRis
 /**
  * @param Sentinel $auth
  * @param Skill $skill
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, Skill $skill)
 {
     parent::__construct($auth);
     $this->skill = $skill;
 }
コード例 #4
0
ファイル: WorkShiftController.php プロジェクト: dobidobz/HRis
 /**
  * @param Sentinel $auth
  * @param Employee $employee
  * @param EmployeeWorkShift $employee_work_shift
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, Employee $employee, EmployeeWorkShift $employee_work_shift)
 {
     parent::__construct($auth);
     $this->employee = $employee;
     $this->employee_work_shift = $employee_work_shift;
 }
コード例 #5
0
 /**
  * @param Sentinel $auth
  * @param EmploymentStatus $employment_status
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, EmploymentStatus $employment_status)
 {
     parent::__construct($auth);
     $this->employment_status = $employment_status;
 }
コード例 #6
0
 /**
  * @param Sentinel $auth
  * @param Employee $employee
  * @param EmergencyContact $emergencyContact
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, Employee $employee, EmergencyContact $emergencyContact)
 {
     parent::__construct($auth);
     $this->employee = $employee;
     $this->emergencyContact = $emergencyContact;
 }
コード例 #7
0
 /**
  * @param Sentinel $auth
  * @param Employee $employee
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, Employee $employee)
 {
     parent::__construct($auth);
     $this->employee = $employee;
     $this->employee_id_prefix = Config::get('company.employee_id_prefix');
 }
コード例 #8
0
 /**
  * @param Sentinel $auth
  * @param Employee $employee
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, Employee $employee)
 {
     parent::__construct($auth);
     $this->employee = $employee;
 }
コード例 #9
0
 /**
  * @param Sentinel $auth
  * @param Employee $employee
  * @param Dependent $dependent
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, Employee $employee, Dependent $dependent)
 {
     parent::__construct($auth);
     $this->employee = $employee;
     $this->dependent = $dependent;
 }
コード例 #10
0
 /**
  * @param Sentinel $auth
  * @param Employee $employee
  * @param TerminationReason $termination_reason
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, Employee $employee, TerminationReason $termination_reason)
 {
     parent::__construct($auth);
     $this->employee = $employee;
     $this->termination_reason = $termination_reason;
 }
コード例 #11
0
 /**
  * @param Sentinel $auth
  * @param Nationality $nationality
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, Nationality $nationality)
 {
     parent::__construct($auth);
     $this->nationality = $nationality;
 }
コード例 #12
0
ファイル: TitleController.php プロジェクト: dobidobz/HRis
 /**
  * @param Sentinel $auth
  * @param JobTitle $job_title
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, JobTitle $job_title)
 {
     parent::__construct($auth);
     $this->job_title = $job_title;
 }
コード例 #13
0
ファイル: PayGradeController.php プロジェクト: dobidobz/HRis
 /**
  * @param Sentinel $auth
  * @param PayGrade $pay_grade
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, PayGrade $pay_grade)
 {
     parent::__construct($auth);
     $this->pay_grade = $pay_grade;
 }
コード例 #14
0
ファイル: EducationController.php プロジェクト: dobidobz/HRis
 /**
  * @param Sentinel $auth
  * @param EducationLevel $education
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, EducationLevel $education)
 {
     parent::__construct($auth);
     $this->education = $education;
 }
コード例 #15
0
ファイル: WorkShiftController.php プロジェクト: dobidobz/HRis
 /**
  * @param Sentinel $auth
  * @param WorkShift $work_shift
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, WorkShift $work_shift)
 {
     parent::__construct($auth);
     $this->work_shift = $work_shift;
 }
コード例 #16
0
 /**
  * @param Sentinel $auth
  * @param User $user
  * @author Bertrand Kintanar
  */
 public function __construct(Sentinel $auth, User $user)
 {
     parent::__construct($auth);
     $this->user = $user;
 }