1<?php
2/**
3 * OrangeHRM is a comprehensive Human Resource Management (HRM) System that captures
4 * all the essential functionalities required for any enterprise.
5 * Copyright (C) 2006 OrangeHRM Inc., http://www.orangehrm.com
6 *
7 * OrangeHRM is free software; you can redistribute it and/or modify it under the terms of
8 * the GNU General Public License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * OrangeHRM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
12 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along with this program;
16 * if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA  02110-1301, USA
18 */
19class Company{
20
21		public $comCode ;
22		public $comapanyName;
23        public $country ;
24        public $street1;
25        public $street2 ;
26		public $taxId;
27		public $phone;
28		public $fax;
29        public $naics;
30        public $city;
31        public $state;
32        public $zipCode;
33        public $comments;
34        public $empCount ;
35
36        function __construct() {
37        }
38
39        public function getComCode()
40        {
41        	return $this->comCode;
42        }
43
44        public function setComCode( $comCode)
45        {
46        	$this->comCode	=	$comCode ;
47        }
48
49        public function getComapanyName() {
50            return $this->comapanyName;
51        }
52
53        public function setComapanyName($comapanyName) {
54            $this->comapanyName = $comapanyName;
55        }
56
57        public function getCountry() {
58            return $this->country;
59        }
60
61        public function setCountry($country) {
62            $this->country = $country;
63        }
64
65        public function getStreet1() {
66            return $this->street1;
67        }
68
69        public function setStreet1($street1) {
70            $this->street1 = $street1;
71        }
72
73        public function getStreet2() {
74            return $this->street2;
75        }
76
77        public function setStreet2($street2) {
78            $this->street2 = $street2;
79        }
80
81        public function getTaxId() {
82            return $this->taxId;
83        }
84
85        public function setTaxId($taxId) {
86            $this->taxId = $taxId;
87        }
88
89        public function getPhone() {
90            return $this->phone;
91        }
92
93        public function setPhone($phone) {
94            $this->phone = $phone;
95        }
96
97        public function getFax() {
98            return $this->fax;
99        }
100
101        public function setFax($fax) {
102            $this->fax = $fax;
103        }
104
105        public function getNaics() {
106            return $this->naics;
107        }
108
109        public function setNaics($naics) {
110            $this->naics = $naics;
111        }
112
113        public function getCity() {
114            return $this->city;
115        }
116
117        public function setCity($city) {
118            $this->city = $city;
119        }
120
121        public function getState() {
122            return $this->state;
123        }
124
125        public function setState($state) {
126            $this->state = $state;
127        }
128
129        public function getZipCode() {
130            return $this->zipCode;
131        }
132
133        public function setZipCode($zipCode) {
134            $this->zipCode = $zipCode;
135        }
136
137        public function getComments() {
138            return $this->comments;
139        }
140
141        public function setComments($comments) {
142            $this->comments = $comments;
143        }
144
145        public function getEmpCount()
146        {
147        	return $this->empCount ;
148        }
149
150        public function setEmpCount( $count)
151        {
152        	$this->empCount	=	$count ;
153        }
154
155
156}