Question: c++ code i need this part - You have been hired by Q8Fashion Co. to design and implement their IT system. - They told you

c++ code i need this part - You have been hired byQ8Fashion Co. to design and implement their IT system. - They toldc++ code

you that the system should record the information related to their Customers,and Employees. - Every Person in the system should contain the followingbasic information: Name, Email, and Gender. - For Customers, you should record

i need this part

the Name, Email, Gender, Delivery Address. - For Employees you should recordthe Name, Email, Gender, and Salary. - For Driver Employees you should

- You have been hired by Q8Fashion Co. to design and implement their IT system. - They told you that the system should record the information related to their Customers, and Employees. - Every Person in the system should contain the following basic information: Name, Email, and Gender. - For Customers, you should record the Name, Email, Gender, Delivery Address. - For Employees you should record the Name, Email, Gender, and Salary. - For Driver Employees you should record the Name, Email, Gender Salary, Driving License Number, and Number of Deliveries. - For Managers you should record the Name, Email, Gender, Salary, and Annual Bonus Amount. - You should note that there are Driver Managers who are Drivers and Managers at the same time. - Draw an inheritance Hierarchy (/0.5) - Code the Main Classes using the minimum number of Classes (Hint: use inheritance) (/0.75) - Generate Getters and Setters (/0.75) clude iss Person private: string Name; string Email; string Gender; public: virtual void setName(string n){ Name = n; } virtual void setEmail(string n){ Email = n; virtual void setGender(string n){ Gender =n;} string getName()\{ return Name; } string getEmail() \{ return Email; } string getGender()\{ return Gender; } class Driver_Manager : public Manager, public Driver_Employee\{ }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!