Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

the "View employee salary statistics" function #7

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
536 changes: 336 additions & 200 deletions EmployManagementSystem.java

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions EmployeeFiles/file001.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Employee ID: 001
Employee Name: Mike
Father's Name: John
Employee Contact: 1234567
Email Information: 001@example.com
Employee Position: Manager
Employee Salary: 50000
7 changes: 7 additions & 0 deletions EmployeeFiles/file002.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Employee ID: 002
Employee Name: Sarah
Father's Name: Robert
Employee Contact: 2345678
Email Information: 002@example.com
Employee Position: Developer
Employee Salary: 44000
7 changes: 7 additions & 0 deletions EmployeeFiles/file003.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Employee ID: 003
Employee Name: Emily
Father's Name: David
Employee Contact: 3456789
Email Information: 003@example.com
Employee Position: Analyst
Employee Salary: 35000
7 changes: 7 additions & 0 deletions EmployeeFiles/file004.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Employee ID: 004
Employee Name: James
Father's Name: Michael
Employee Contact: 4567890
Email Information: 004@example.com
Employee Position: Sales Representative
Employee Salary: 30000
7 changes: 7 additions & 0 deletions EmployeeFiles/file005.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Employee ID: 005
Employee Name: Lily
Father's Name: William
Employee Contact: 5678901
Email Information: 005@example.com
Employee Position: Accountant
Employee Salary: 45000
7 changes: 7 additions & 0 deletions EmployeeFiles/file006.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Employee ID: 006
Employee Name: Daniel
Father's Name: Richard
Employee Contact: 6789012
Email Information: 006@example.com
Employee Position: Designer
Employee Salary: 35000
7 changes: 7 additions & 0 deletions EmployeeFiles/file007.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Employee ID: 007
Employee Name: Sophia
Father's Name: Christopher
Employee Contact: 7890123
Email Information: 007@example.com
Employee Position: HR Manager
Employee Salary: 55000
7 changes: 7 additions & 0 deletions EmployeeFiles/file008.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Employee ID: 008
Employee Name: Ethan
Father's Name: Matthew
Employee Contact: 8901234
Email Information: 008@example.com
Employee Position: Engineer
Employee Salary: 40000
7 changes: 7 additions & 0 deletions EmployeeFiles/file009.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Employee ID: 009
Employee Name: Olivia
Father's Name: Benjamin
Employee Contact: 9012345
Email Information: 009@example.com
Employee Position: Researcher
Employee Salary: 65000
7 changes: 7 additions & 0 deletions EmployeeFiles/file010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Employee ID: 010
Employee Name: Ava
Father's Name: Joseph
Employee Contact: 0123456
Email Information: 010@example.com
Employee Position: Marketing Specialist
Employee Salary: 38000
Binary file modified Images/Java.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Employee-Management-System
This repository consists of Java Program for Employee Management System. In this repository I have created a TUI program for Employee Management System which consists of 4 different operation.<br>
(1) Adding User<br> (2) Removing User<br> (3) Updating User<br> (4) Viewing details of User
This repository consists of Java Program for Employee Management System. In this repository I have created a TUI program for Employee Management System which consists of 5 different operation.<br>
(1) Adding Employee<br> (2) Removing Employee<br> (3) Updating Employee<br> (4) Viewing details of Employee<br> (5) See salary statistics of employees<br>

The EmployeeFiles folder contains ten examples of employee data, and newly added employees are added to the folder in the "employee ID.txt" format.<br>
The Program is completely based on OOPs concept.

<img src="Images/Java.png">
Expand Down