/**
  * Adds a status to the controller
  *
  * @param PlentymarketsExportStatus $Status
  */
 public function add(PlentymarketsExportStatus $Status)
 {
     $this->Status[$Status->getName()] = $Status;
 }
 /**
  * Checks whether the export depends on another export
  *
  * @return boolean
  */
 public function needsDependency()
 {
     return $this->Dependency->needsDependency() || !$this->Dependency->isFinished();
 }