public function __construct($countryCode = NULL, $id = NULL, $LocationType = NULL)
 {
     parent::__construct();
     $this->countryCode = $countryCode;
     $this->id = $id;
     $this->LocationType = $LocationType;
 }
Exemplo n.º 2
0
 public function __construct($countryCode = NULL, $id = NULL, $LocationType = NULL)
 {
     if (get_parent_class('CountryLocation')) {
         parent::__construct();
     }
     $this->countryCode = $countryCode;
     $this->id = $id;
     $this->LocationType = $LocationType;
 }