@@ 28-43 (lines=16) @@ | ||
25 | private $oJobDependencyService; |
|
26 | ||
27 | ||
28 | public function __construct( |
|
29 | JobIndexServiceInterface $oJobIndexService, |
|
30 | JobRepositoryInterface $oJobRepositoryRemote, |
|
31 | JobRepositoryInterface $oJobRepositoryLocal, |
|
32 | JobComparisonInterface $oJobComparisonBusinessCase, |
|
33 | JobDependencyServiceInterface $oJobDependencyService, |
|
34 | LoggerInterface $oLogger |
|
35 | ) |
|
36 | { |
|
37 | $this->oJobIndexService = $oJobIndexService; |
|
38 | $this->oJobRepositoryRemote = $oJobRepositoryRemote; |
|
39 | $this->oJobRepositoryLocal = $oJobRepositoryLocal; |
|
40 | $this->oJobComparisonBusinessCase = $oJobComparisonBusinessCase; |
|
41 | $this->oJobDependencyService = $oJobDependencyService; |
|
42 | $this->oLogger = $oLogger; |
|
43 | } |
|
44 | ||
45 | /** |
|
46 | * @inheritdoc |
@@ 30-45 (lines=16) @@ | ||
27 | * @param JobComparisonInterface $oJobComparisonBusinessCase |
|
28 | * @param LoggerInterface $oLogger |
|
29 | */ |
|
30 | public function __construct( |
|
31 | JobIndexServiceInterface $oJobIndexService, |
|
32 | JobRepositoryInterface $oJobRepositoryRemote, |
|
33 | JobRepositoryInterface $oJobRepositoryLocal, |
|
34 | JobComparisonInterface $oJobComparisonBusinessCase, |
|
35 | LoggerInterface $oLogger |
|
36 | ||
37 | ) |
|
38 | { |
|
39 | ||
40 | $this->oJobIndexService = $oJobIndexService; |
|
41 | $this->oLogger = $oLogger; |
|
42 | $this->oJobComparisonBusinessCase = $oJobComparisonBusinessCase; |
|
43 | $this->oJobRepositoryRemote = $oJobRepositoryRemote; |
|
44 | $this->oJobRepositoryLocal = $oJobRepositoryLocal; |
|
45 | } |
|
46 | ||
47 | /** |
|
48 | * @return void |