Advertisement
akosiraff

Employee Information Management System JAVA

Oct 21st, 2013
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/employee-information-management-system-java/
  3. You are to build an Employee Information Management System (EIMS) that allows human resource personnel to manage a company’s work force.
  4. Upon start up the system will initialize its “database” by reading a text file containing employee information. The EIMS system will then display a menu with different options such as Listing/Add new hire/Delete employee/Query/ Quit etc … and wait for user selection to execute the selected option.
  5. Class Design The following classes are needed:
  6. EmployeeDatabase
  7. - buildDB: reading text file to load employee data into database (linked list sorted by employee ID)
  8. - listing (display all employee data)
  9. - add: insert new hire to the right position in the sorted database – delete: remove employee from database
  10. - query: given employee ID search and display all employee data
  11. Employee
  12. - instance fields are: first name, last name, employee ID, department, salary, years of service, work location
  13. Sample of text file: Jone Eastwood;26712;IT;65438.75;5;San Jose Cindy Smith;3481;HR;45900;3;Cupertino
  14.  
  15. Download: http://solutionzip.com/downloads/employee-information-management-system-java/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement