Organization_Management #142

Merged
ashutosh.nehete merged 92 commits from Organization_Management into main 2025-09-30 09:05:14 +00:00
Showing only changes of commit aa596b736d - Show all commits

View File

@ -364,6 +364,11 @@ namespace Marco.Pms.Services.Controllers
{
continue;
}
var isServiceExist = await _context.ServiceMasters.AnyAsync(s => s.Id == serviceId);
if (!isServiceExist)
{
continue;
}
var projectService = projectServices.FirstOrDefault(ps => ps.ServiceId == serviceId);
if (projectService == null)
{