/**
  * Create a job object
  *
  * @param string $title Title of the Job Object
  *
  * @return Job $job The created job
  */
 public function createJob($title)
 {
     $job = new Job($title);
     $job->setJobRepository($this->jobRepository);
     $job->setEventDispatcher($this->eventDispatcher);
     return $job;
 }