Example #1
0
 Employee::Employee(const Employee & rhs):
 itsFirstName(rhs.GetFirstName()),
 itsLastName(rhs.GetLastName()),
 itsAddress(rhs.GetAddress()),
 itsSalary(rhs.GetSalary())
 {}