/**
  *
  * @param int $trackId The trackId for this dependency
  */
 public function __construct($trackId)
 {
     $this->_trackId = $trackId;
     parent::__construct();
 }
 /**
  *
  * @param string $dependsOn the model field to depend on
  */
 public function __construct($dependsOn)
 {
     $this->_dependentOn = array($dependsOn);
     parent::__construct();
 }