/**
  * Constructor
  *
  * @param Lot $lot model
  */
 public function __construct(Lot $lot)
 {
     parent::__construct($lot);
     $this->lot = $lot;
 }
 /**
  * Constructor
  *
  * @param Region $region model
  */
 public function __construct(Region $region)
 {
     parent::__construct($region);
     $this->region = $region;
 }
 /**
  * Constructor
  *
  * @param Entranxit $entranxit  model
  */
 public function __construct(Entranxit $entranxit)
 {
     parent::__construct($entranxit);
     $this->entranxit = $entranxit;
 }
 /**
  * Constructor
  *
  * @param Owner $owner model
  */
 public function __construct(Owner $owner)
 {
     parent::__construct($owner);
     $this->owner = $owner;
 }