Question: I need help for this c + + project: Project Requirement Pseudocode for the main methods Completed UML Class Diagrams for all classes and interfaces
I need help for this c project: Project Requirement
Pseudocode for the main methods Completed UML Class Diagrams for all classes and interfaces with their relationship
The implementation of all required features the source code A snapshot of output demonstrating the functionality of the application whether correct or incorrect, complete, or incomplete, included in the README on GitHub.
Using console to display and input data
Driver class to test all functional methods in the project
The output should be clear and wellpresented containing messages to reflect the code testing.
A snapshot showing which tests have passed, included in the project folder on GitHub.
Project Objectives
This project incorporates programming techniques with other concepts that you have learned in this class. You will:
Apply OOP concepts, write subclasses, and use aggregation.
Create a console interface
Read and write your class data into a txt file
Test your classes
Create documentation for end users
Project Description
A tiny college has asked you to be a part of their team because they need a programmer, analyst, and designer to help them in implementing a model of a human resources management system.
In your model, you will have department objects representing departments A department contains lists of teachers either parttime or fulltime teachers and lists of staff; each of which belongs exclusively to one department. A department has a dean, who should be a teacher of that department.
Implementation Details
Implement an abstract class Person that includes at least five shared fields and contains at least one abstract method of your choice for example to define a person's category teacher or staff
Extend class Person with concrete classes, and override the toString and equals methods of each class.
The class Teacher has two instance variables: specialty and degree and some other fields for its subclasses parttime or fulltime teachers
The class Staff has also two instance variables: duty and workload
Implement an interface PayRoll that contains ComputePayRoll method to be implemented as follows: a For each fulltime teacher, the salary is computed as degreeRate where degreeRate is for PhD Master, and Bachelor, respectively.
b For each parttime teacher, the salary is computed as hoursWorked degreeRate where degreeRate is for PhD Master, and Bachelor, respectively.
c For each staff, the salary is computed as workload where the workload is the weekly working hours. The working hours cannot exceed
d Implement the method ComputePayRoll inside Teacher and Staff classes.
Teachers and staff are addedassigned to a department, first by loadingreading from a text file during the first execution of the application. Moreover, new teachers and staff must be addedassigned through the GUI application.
Trying to add a teacher or a staff member to an inexistent department based on department id should risethrow an exception.
Trying to add a teacher or a staff member that already existsis added based on the id to the department should throw an exception.
A department class has a list of teachers and staff. A department class also has a dean, who should be a teacher of that department, otherwise, an exception must be thrown.
Each new teacher and staff added to a department should be stored in the text file before exiting the application, generating a new version of the text file. So if the text file does exist which is the case new teachers or staff should be appended. There are files of teachers and staff.
Customized exception handling for the cases above must be implemented.
You should be able to add TeachersStaffsDepartments through thd console and the info should be save in the corresponding text file. Next time the application is run, it should load the previously entered info.
Design Requirements
A clear and precise console interface should be designed for input and output
Create all the classes
Include all the supported class Libraries
Document your code using comments
A Few Notes
The pseudocode that you are asked to do could be in a Word document format, only for the methods that are doing some calculations. You don't need to write it for getterssetters toString equals etc.
You have to write all the methods inside your UML diagrams excluding getterssetters toString etc.
A teacher's specialty is something like "Computer Science" and a teacher's degree is a "Master's".
Parttime or fulltime is a field in the Teacher's class
A Dean is a special type of teacher.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
