/**
  * @param CampaignManageDataService $manageService
  * @param UserService $userService
  * @param CampaignManageService $campaignService
  */
 public function __construct(CampaignManageDataService $manageService, UserService $userService, CampaignManageService $campaignService)
 {
     $this->manageService = $manageService;
     $this->userService = $userService;
     $this->campaignService = $campaignService;
     parent::__construct($this->manageService = $manageService);
 }
 public function __construct(ShiftTransformer $shiftTransformer, ShiftPickTransformer $shiftPickTransformer)
 {
     parent::__construct();
     $this->data['current_tab'] = 33;
     $this->shiftTransfromer = $shiftTransformer;
     $this->shiftPickTransformer = $shiftPickTransformer;
 }
 public function __construct()
 {
     parent::__construct();
     $this->data['current_tab'] = 26;
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
 }
Example #5
0
 public function __construct(NotificationTransformer $notificationTransformer)
 {
     parent::__construct();
     $this->notificationTransformer = $notificationTransformer;
 }
Example #6
0
 public function __construct(StudentTransformer $studentTransformer)
 {
     parent::__construct();
     $this->studentTransformer = $studentTransformer;
 }