Addet Employye get logic

This commit is contained in:
Alex Pedersen
2026-08-03 09:55:41 +02:00
parent 205d27c6c7
commit c1695b4967
8 changed files with 95 additions and 37 deletions

View File

@@ -50,5 +50,10 @@ namespace Pos.Service
if (employeeId <= 0)
throw new ArgumentOutOfRangeException(nameof(employeeId));
}
public async Task<List<EmployeeEntity>> GetEmployeesAsync()
{
return await _employeeRepository.GetAllAsync();
}
}
}