add: implement ProjectDeployBoardListQueryHandler and initialize GetProjectsListQueryHandler structure

This commit is contained in:
2025-12-24 18:55:01 +03:30
parent b9e271de1a
commit 39a5918a11
2 changed files with 11 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ public class ProjectBoardListQueryHandler : IBaseQueryHandler<ProjectBoardListQu
CancellationToken cancellationToken)
{
var currentUserId = _authHelper.GetCurrentUserId();
var queryable = _programManagerDbContext.TaskSections.AsNoTracking()
.Where(x => x.InitialEstimatedHours > TimeSpan.Zero && x.Status != TaskSectionStatus.Completed)
.Include(x => x.Task)

View File

@@ -0,0 +1,10 @@
namespace GozareshgirProgramManager.Application.Modules.Projects.Queries.ProjectDeployBoardList;
public record GetProjectsListQueryHandler : IBaseQueryHandler<GetProjectsListQuery, GetProjectsListResponse>;
public record GetProjectsListResponse();
public class ProjectDeployBoardListQueryHandler
{
}