diff --git a/ServiceHost/Areas/Admin/Controllers/ProgramManager/ProjectController.cs b/ServiceHost/Areas/Admin/Controllers/ProgramManager/ProjectController.cs index c3305602..a9f0fce8 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; }