Document_Manager #129

Merged
ashutosh.nehete merged 83 commits from Document_Manager into main 2025-09-11 04:12:01 +00:00
Showing only changes of commit b6243f8100 - Show all commits

View File

@ -254,6 +254,7 @@ namespace Marco.Pms.Services.Controllers
.ThenInclude(e => e!.JobRole) .ThenInclude(e => e!.JobRole)
.Include(av => av.ChildAttachment) .Include(av => av.ChildAttachment)
.ThenInclude(da => da!.DocumentType) .ThenInclude(da => da!.DocumentType)
.ThenInclude(dt => dt!.DocumentCategory)
.FirstOrDefaultAsync(av => av.ChildAttachmentId == id && av.TenantId == tenantId); .FirstOrDefaultAsync(av => av.ChildAttachmentId == id && av.TenantId == tenantId);
// If no mapping found, return 404 // If no mapping found, return 404