public function __construct($appName, IRequest $request, ILogger $logger, BackupService $backupService, ConfigService $configService, ResponseFactory $responseFactory, IL10N $trans)
 {
     parent::__construct($appName, $request, $logger, $responseFactory);
     $this->backupService = $backupService;
     $this->configService = $configService;
     $this->trans = $trans;
 }
 public function __construct($appName, IRequest $request, ILogger $logger, BackupService $backupService, ConfigService $configService, ScheduleService $scheduleService, IURLGenerator $urlGenerator, ResponseFactory $responseFactory, DIContainer $container)
 {
     parent::__construct($appName, $request, $logger, $responseFactory);
     $this->backupService = $backupService;
     $this->configService = $configService;
     $this->scheduleService = $scheduleService;
     $this->urlGenerator = $urlGenerator;
     $this->container = $container;
 }