From 94955ea1b4f1453ec86fb082eac82a1410597259 Mon Sep 17 00:00:00 2001 From: mahan Date: Tue, 30 Dec 2025 12:54:53 +0330 Subject: [PATCH] add: update GetProjectDeployBoardDetails method to use ProjectDeployBoardDetailsQuery --- .../Admin/Controllers/ProgramManager/ProjectController.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ServiceHost/Areas/Admin/Controllers/ProgramManager/ProjectController.cs b/ServiceHost/Areas/Admin/Controllers/ProgramManager/ProjectController.cs index e9c5e60f..e13bcc97 100644 --- a/ServiceHost/Areas/Admin/Controllers/ProgramManager/ProjectController.cs +++ b/ServiceHost/Areas/Admin/Controllers/ProgramManager/ProjectController.cs @@ -14,6 +14,7 @@ using GozareshgirProgramManager.Application.Modules.Projects.Queries.GetProjectA using GozareshgirProgramManager.Application.Modules.Projects.Queries.GetProjectsList; using GozareshgirProgramManager.Application.Modules.Projects.Queries.ProjectBoardDetail; using GozareshgirProgramManager.Application.Modules.Projects.Queries.ProjectBoardList; +using GozareshgirProgramManager.Application.Modules.Projects.Queries.ProjectDeployBoardDetail; using GozareshgirProgramManager.Application.Modules.Projects.Queries.ProjectDeployBoardList; using GozareshgirProgramManager.Application.Modules.Projects.Queries.ProjectSetTimeDetails; using MediatR; @@ -133,9 +134,9 @@ public class ProjectController : ProgramManagerBaseController } [HttpGet("deploy-board/details")] - public async Task>> GetProjectDeployBoardDetails(Guid id) + public async Task>> GetProjectDeployBoardDetails(Guid id) { - var query = new ProjectBoardDetailQuery(id); + var query = new ProjectDeployBoardDetailsQuery(id); var res = await _mediator.Send(query); return res; }