/** * @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; }
/** * @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; }
/** * @param Sentinel $auth * @param Skill $skill * @author Bertrand Kintanar */ public function __construct(Sentinel $auth, Skill $skill) { parent::__construct($auth); $this->skill = $skill; }
/** * @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; }
/** * @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; }
/** * @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; }
/** * @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'); }
/** * @param Sentinel $auth * @param Employee $employee * @author Bertrand Kintanar */ public function __construct(Sentinel $auth, Employee $employee) { parent::__construct($auth); $this->employee = $employee; }
/** * @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; }
/** * @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; }
/** * @param Sentinel $auth * @param Nationality $nationality * @author Bertrand Kintanar */ public function __construct(Sentinel $auth, Nationality $nationality) { parent::__construct($auth); $this->nationality = $nationality; }
/** * @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; }
/** * @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; }
/** * @param Sentinel $auth * @param EducationLevel $education * @author Bertrand Kintanar */ public function __construct(Sentinel $auth, EducationLevel $education) { parent::__construct($auth); $this->education = $education; }
/** * @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; }
/** * @param Sentinel $auth * @param User $user * @author Bertrand Kintanar */ public function __construct(Sentinel $auth, User $user) { parent::__construct($auth); $this->user = $user; }