You are on page 1of 8

Assignment

Develop an employee management application of ThienLong company as follows:

o The company has 2 types of employees: Fulltime and Parttime.


o Each Employee fulltime details include code, name, absent and
basic_Salary(1500).
o Each Employee parttime details include code, name, present and
daily_Wage (40).

Create a program menu that includes the following features:


o Add a new employees (3 Fulltime & 2 Parttime).
o Print out the list of employees on the screen.
o Print a list of employees in Ascending order of salary.
o Update the employees information based on the name the user
entered.
o Delete an employee based on the code the user entered.
o Exit the program.

Request

o Use ArrayList to manage employees. One-dimensional arrays cannot be


used.
o Use Generic to limit type in a list.

You might also like