{"id":30196215,"url":"https://github.com/kenzy-ragab/employee-management-system","last_synced_at":"2026-04-18T04:01:54.224Z","repository":{"id":309129155,"uuid":"1034726541","full_name":"Kenzy-Ragab/Employee-Management-System","owner":"Kenzy-Ragab","description":"Simple employee management system console app built with C#","archived":false,"fork":false,"pushed_at":"2025-09-06T12:52:23.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-06T14:39:16.414Z","etag":null,"topics":["console-application","crud","csharp","dotnet","employee-management","file-io","modular-design","oop"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Kenzy-Ragab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-08T21:59:43.000Z","updated_at":"2025-09-06T12:52:25.000Z","dependencies_parsed_at":"2025-08-10T03:21:53.249Z","dependency_job_id":"5a455f8a-5f0d-4030-97e8-4585e3d17288","html_url":"https://github.com/Kenzy-Ragab/Employee-Management-System","commit_stats":null,"previous_names":["kenzy-ragab/employee-management-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Kenzy-Ragab/Employee-Management-System","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kenzy-Ragab%2FEmployee-Management-System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kenzy-Ragab%2FEmployee-Management-System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kenzy-Ragab%2FEmployee-Management-System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kenzy-Ragab%2FEmployee-Management-System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kenzy-Ragab","download_url":"https://codeload.github.com/Kenzy-Ragab/Employee-Management-System/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kenzy-Ragab%2FEmployee-Management-System/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31955919,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["console-application","crud","csharp","dotnet","employee-management","file-io","modular-design","oop"],"created_at":"2025-08-13T05:17:05.250Z","updated_at":"2026-04-18T04:01:54.211Z","avatar_url":"https://github.com/Kenzy-Ragab.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧑‍💼 Employee Management System (Console App)\n\nA simple and interactive employee management application built with **C#**.\nYou can add, view, update, delete employees, and filter or summarize employee data using a clean, user-friendly console interface.\n\n---\n  \n## 💻 Features\n\n- ➕ **Add new employees** with detailed info (ID, Name, Age, Department, Position, Work Schedule, Salary, Address)\n- 📋 **View all employees** in a neatly formatted table\n- 🔄 **Update existing employee data** with option to keep current values\n- ❌ **Delete employees** with confirmation prompt\n- 🔍 **Filter employees** by department for easier management\n- 💰 **View total salary** expenditure of all employees\n- 💾 **Persistent data storage** in a local text file (`employees.txt`)\n- 🛠️ **Modular design** with separation of concerns (Models, Services, Screens, Helpers)\n\n---\n\n## 🧱 Project Structure\n\n```\nEmployeeManagementSystem/\n├── Helpers/    # Input validation and reading helpers\n├── Models/     # Employee and Address data models with enums\n├── Services/   # Business logic for employee management + file storage\n├── Screens/    # UI screens for Add, View, Update, Delete, Main\n└── Program.cs  # Application entry point\n```\n\n---\n\n## 🛠️ Technologies Used\n\n-  **C#** (.NET Console Application)\n-  **File I/O** (System.IO)\n-  **Object-Oriented Programming**\n-  **Console User Interface**\n-  **Clean Code Architecture** (Separation of concerns)\n\n---\n\n## 🚀 How to Run\n\n1. **Clone the repository**:\n   ```bash\n   git clone https://github.com/YourUsername/EmployeeManagementSystem.git\n   ```\n\n2. **Open in Visual Studio or VS Code**\n3. **Build and run the project**\n\n---\n\n## 📸 Preview\n\n```\n╔══════════════════════════════════════╗\n║          MAIN MENU SCREEN            ║\n╠══════════════════════════════════════╣\n║[1] Add New Employee                  ║\n║[2] View Employees Menu               ║\n║[3] Update Employee                   ║\n║[4] Delete Employee                   ║\n║[5] View Total Salaries               ║\n║[6] Exit                              ║\n╚══════════════════════════════════════╝\n```\n\n---\n\n## 🧠 What I Learned\n\n- Designing modular console applications in C#\n- Implementing CRUD operations with validation\n- Managing persistent data using file storage\n- Creating interactive console menus and user-friendly interfaces\n- Structuring code cleanly with Models, Services, and Screens\n\n---\n\n## 📂 Example Employee Record Format (Saved in File)\n\n```\n1|John Doe|30|IT|Employee|FullTime|5000|New York|Manhattan|5th Avenue|12\n2|Jane Smith|28|Finance|Manager|PartTime|6000|Los Angeles|Downtown|Sunset Blvd|8\n```\n\n---\n\n## 📌 Future Enhancements\n\n- 🔍 Search employees by name or ID\n- 📊 Generate reports and analytics\n- 📤 Export employee data to CSV or Excel\n- 🔔 Add notifications for employee anniversaries or birthdays\n- 🌐 Develop a GUI or web-based frontend\n\n---\n\n## 🤍 Task Requirement in Breakin Point (Student Activity)\n\n📎 [Task Requirements (Google Drive)](https://drive.google.com/drive/folders/10U8n-uBXCUBl6RGIvcKfzueng_af0lCA)\n\n📸 [Archived Copy at submission time (Google Drive)](https://drive.google.com/drive/u/1/folders/1sb7paWmxPK0UtUOy_JzGELNE5tkZX3az)\n\nMade with ❤️ by **Kenzy Ragab**\n\nFeel free to **fork**, **use**, or **contribute** to this project!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenzy-ragab%2Femployee-management-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkenzy-ragab%2Femployee-management-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenzy-ragab%2Femployee-management-system/lists"}