BaseContact::__construct PHP Method

__construct() public method

public __construct ( )
        public function __construct()
        {
        }

Usage Example

 public function __construct($id = null, $name = null, $companyId = null, $status = null, $address = null, $cellPhone = null, $comment = null, $email = null, $faxPhone = null, $title = null, $workPhone = null, $BaseContactType = null)
 {
     parent::__construct();
     $this->id = $id;
     $this->name = $name;
     $this->companyId = $companyId;
     $this->status = $status;
     $this->address = $address;
     $this->cellPhone = $cellPhone;
     $this->comment = $comment;
     $this->email = $email;
     $this->faxPhone = $faxPhone;
     $this->title = $title;
     $this->workPhone = $workPhone;
     $this->BaseContactType = $BaseContactType;
 }
All Usage Examples Of BaseContact::__construct