Set up employee management codebase

<SRS>SRS02 : Employee Management </SRS>

<Changes>
- Renamed EmployeeManagememtService to EmployeeManagementService
- Added basic employee management service structure
- Connected employee management into controller and datastore
- Updated project config files
- Added auto ID generation across models
- Added payroll-related config constants
</Changes>

<Review>
Smitha Mohan
</Review>
This commit is contained in:
2026-04-07 10:51:38 +05:30
parent fcc612f081
commit 07bd979685
44 changed files with 251 additions and 65 deletions
@@ -3,5 +3,16 @@
class HRManager : public Employee
{
HRManager() = default;
HRManager(
const std::string& password,
const std::string& name,
const std::string& phone,
const std::string& email,
const std::string& teamId,
std::shared_ptr<Payroll> payroll
) :Employee(password, name, phone, email, teamId, Enums::EmployeeType::GENERAL, payroll) {
};
~HRManager() = default;
};