public function __construct($_domainPrefix)
 {
     parent::__construct();
     $this->domainPrefix = $this->get($_domainPrefix);
 }
 public function __construct($_errors)
 {
     parent::__construct();
     $this->errors = $this->get($_errors);
 }
 public function __construct($_stores, $_connectUrl)
 {
     parent::__construct();
     $this->stores = $this->get($_stores);
     $this->connectUrl = $this->get($_connectUrl);
 }