From 39a5918a1150611433abd9806ccd2f34f1a67fcb Mon Sep 17 00:00:00 2001 From: mahan Date: Wed, 24 Dec 2025 18:55:01 +0330 Subject: [PATCH] add: implement ProjectDeployBoardListQueryHandler and initialize GetProjectsListQueryHandler structure --- .../ProjectBoardList/ProjectBoardListQueryHandler.cs | 1 + .../ProjectDeployBoardListQueryHandler.cs | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectDeployBoardList/ProjectDeployBoardListQueryHandler.cs diff --git a/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListQueryHandler.cs b/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListQueryHandler.cs index 18a52853..69e82940 100644 --- a/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListQueryHandler.cs +++ b/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectBoardList/ProjectBoardListQueryHandler.cs @@ -22,6 +22,7 @@ public class ProjectBoardListQueryHandler : IBaseQueryHandler x.InitialEstimatedHours > TimeSpan.Zero && x.Status != TaskSectionStatus.Completed) .Include(x => x.Task) diff --git a/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectDeployBoardList/ProjectDeployBoardListQueryHandler.cs b/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectDeployBoardList/ProjectDeployBoardListQueryHandler.cs new file mode 100644 index 00000000..e040c52c --- /dev/null +++ b/ProgramManager/src/Application/GozareshgirProgramManager.Application/Modules/Projects/Queries/ProjectDeployBoardList/ProjectDeployBoardListQueryHandler.cs @@ -0,0 +1,10 @@ +namespace GozareshgirProgramManager.Application.Modules.Projects.Queries.ProjectDeployBoardList; + +public record GetProjectsListQueryHandler : IBaseQueryHandler; + +public record GetProjectsListResponse(); + +public class ProjectDeployBoardListQueryHandler +{ + +} \ No newline at end of file