Domain\Dashboard\Http\DashboardController::__construct PHP Method

__construct() public method

Dashboard construct.
public __construct ( EmployeeRepository $employee, StudentRepository $student, TeacherRepository $teacher )
$employee Domain\Employee\EmployeeRepository
$student Domain\Student\StudentRepository
$teacher Domain\Teacher\TeacherRepository
    public function __construct(EmployeeRepository $employee, StudentRepository $student, TeacherRepository $teacher)
    {
        $this->employee = $employee;
        $this->student = $student;
        $this->teacher = $teacher;
    }
DashboardController