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
@@ -1,5 +1,9 @@
#pragma once
class PayslipManagementService
{
private:
DataStore& m_dataStore;
public:
PayslipManagementService() : m_dataStore(DataStore::getInstance()) {};
};