From 061058cbeb181f7d5bdc6dbbbe1e6bddebdb6296 Mon Sep 17 00:00:00 2001 From: mahan Date: Wed, 7 Jan 2026 11:21:58 +0330 Subject: [PATCH] fix change status error --- .../Persistence/Repositories/TaskSectionRepository.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ProgramManager/src/Infrastructure/GozareshgirProgramManager.Infrastructure/Persistence/Repositories/TaskSectionRepository.cs b/ProgramManager/src/Infrastructure/GozareshgirProgramManager.Infrastructure/Persistence/Repositories/TaskSectionRepository.cs index 1b29e154..d6d60b69 100644 --- a/ProgramManager/src/Infrastructure/GozareshgirProgramManager.Infrastructure/Persistence/Repositories/TaskSectionRepository.cs +++ b/ProgramManager/src/Infrastructure/GozareshgirProgramManager.Infrastructure/Persistence/Repositories/TaskSectionRepository.cs @@ -19,6 +19,7 @@ public class TaskSectionRepository:RepositoryBase,ITaskSection { return await _context.TaskSections .Include(x => x.Activities) + .Include(x=>x.AdditionalTimes) .FirstOrDefaultAsync(x => x.Id == id, cancellationToken); }