Domain\Student\StudentService::__construct PHP Method

__construct() public method

Construct.
public __construct ( StudentRepository $repo, UserRepository $user )
$repo StudentRepository
$user Domain\User\UserRepository
    public function __construct(StudentRepository $repo, UserRepository $user)
    {
        $this->repo = $repo;
        $this->user = $user;
    }
StudentService