@@ 58-68 (lines=11) @@ | ||
55 | * @param string $CompanyNo |
|
56 | * @param string $CompanyName |
|
57 | */ |
|
58 | public function __construct($AccountNo, $FirstName, $LastName, $PhoneNo, $Address1, $City, $CompanyNo, $CompanyName) |
|
59 | { |
|
60 | $this->AccountNo = $AccountNo; |
|
61 | $this->FirstName = $FirstName; |
|
62 | $this->LastName = $LastName; |
|
63 | $this->PhoneNo = $PhoneNo; |
|
64 | $this->Address1 = $Address1; |
|
65 | $this->City = $City; |
|
66 | $this->CompanyNo = $CompanyNo; |
|
67 | $this->CompanyName = $CompanyName; |
|
68 | } |
|
69 | ||
70 | /** |
|
71 | * @return string |
@@ 52-61 (lines=10) @@ | ||
49 | * @param boolean $IsActive |
|
50 | * @param TSearchRigidity $Rigidity |
|
51 | */ |
|
52 | public function __construct($AccountNo, $PhoneNo, $LastName, $FirstName, $CompanyNo, $IsActive, $Rigidity) |
|
53 | { |
|
54 | $this->AccountNo = $AccountNo; |
|
55 | $this->PhoneNo = $PhoneNo; |
|
56 | $this->LastName = $LastName; |
|
57 | $this->FirstName = $FirstName; |
|
58 | $this->CompanyNo = $CompanyNo; |
|
59 | $this->IsActive = $IsActive; |
|
60 | $this->Rigidity = $Rigidity; |
|
61 | } |
|
62 | ||
63 | /** |
|
64 | * @return string |