Fixed the typo

This commit is contained in:
ashutosh.nehete 2025-08-13 16:04:30 +05:30
parent 673102cb50
commit ba5698f4b2

View File

@ -82,7 +82,7 @@ namespace Marco.Pms.Services.Service
var employeeIds = await _context.EmployeeRoleMappings var employeeIds = await _context.EmployeeRoleMappings
.Where(er => (projectAssignedEmployeeIds.Contains(er.EmployeeId) || manageProjectsRoleIds.Contains(er.RoleId)) && teamAttendanceRoleIds.Contains(er.RoleId)) .Where(er => (projectAssignedEmployeeIds.Contains(er.EmployeeId) || manageProjectsRoleIds.Contains(er.RoleId)) && teamAttendanceRoleIds.Contains(er.RoleId))
.Select(er => er.RoleId) .Select(er => er.EmployeeId)
.ToListAsync(); .ToListAsync();
Notification notificationFirebase; Notification notificationFirebase;