add: implement ProjectDeployBoardListQueryHandler and initialize GetProjectsListQueryHandler structure
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace GozareshgirProgramManager.Application.Modules.Projects.Queries.ProjectDeployBoardList;
|
||||
|
||||
public record GetProjectsListQueryHandler : IBaseQueryHandler<GetProjectsListQuery, GetProjectsListResponse>;
|
||||
|
||||
public record GetProjectsListResponse();
|
||||
|
||||
public class ProjectDeployBoardListQueryHandler
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user